1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix for card image scaling problem

Card images were losing aspect, change to "background-size: cover" to fix.
This commit is contained in:
Dave Child 2019-12-07 15:00:33 +00:00 committed by GitHub
parent a177940c3e
commit d544877050
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -247,7 +247,7 @@ button {
} }
.coveredImage { .coveredImage {
background-size: 100% 100%; background-size: cover;
background-position: center center; background-position: center center;
} }