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

Fix remote control movie poster size

This commit is contained in:
Bill Thornton 2022-02-25 01:40:54 -05:00
parent adfe891085
commit 68f7002ca8

View file

@ -325,13 +325,15 @@
}
.nowPlayingPageImageContainer {
display: flex;
flex-direction: column;
flex-grow: 1;
flex-shrink: 1;
align-items: center;
justify-content: center;
width: 100%;
min-height: 0;
margin: 0 auto 0.5em;
display: flex;
align-items: center;
}
.nowPlayingPageImageContainerNoAlbum .cardImageContainer .cardImageIcon {
@ -403,17 +405,13 @@
margin: 0 auto;
}
.nowPlayingPageImage.nowPlayingPageImageAudio {
.nowPlayingPageImage.nowPlayingPageImageAudio,
.nowPlayingPageImageContainer.nowPlayingPageImagePoster {
width: auto;
max-width: 100%;
max-height: 100%;
}
.nowPlayingPageImageContainer.nowPlayingPageImagePoster {
height: 50%;
overflow: hidden;
}
.nowPlayingPageImageContainer.nowPlayingPageImagePoster img {
height: 100%;
width: auto;