fix: set min size for video

when the video is not loaded, the size is determined by the poster image. But when the poster image returns a 404, then the video had a size of 0x0
This commit is contained in:
pimlie 2024-07-30 15:01:57 +02:00
parent f90bf5b724
commit 736bf1c3dd

View file

@ -1103,6 +1103,8 @@ a.search_subreddit:hover {
}
.post_media_video {
min-width: 100px;
max-width: 100px;
width: auto;
height: auto;
max-width: 100%;