Fix audio player overlapping on small screens

This commit is contained in:
Bill Thornton 2021-09-30 10:07:32 -04:00
parent 5af69a9b98
commit 9c58dd7f6e

View File

@ -327,8 +327,13 @@
}
.nowPlayingPageImageContainer {
flex-grow: 1;
flex-shrink: 1;
width: 100%;
margin: auto auto 0.5em;
min-height: 0;
margin: 0 auto 0.5em;
display: flex;
align-items: center;
}
.nowPlayingPageImageContainerNoAlbum .cardImageContainer .cardImageIcon {
@ -337,7 +342,9 @@
}
.nowPlayingInfoControls {
margin: 0.5em 0 1em 0;
flex-grow: 0;
flex-shrink: 1;
margin: 0.5em 0 0;
width: 100%;
-webkit-box-pack: start !important;
-webkit-justify-content: start !important;
@ -400,7 +407,9 @@
}
.nowPlayingPageImage.nowPlayingPageImageAudio {
width: 100%;
width: auto;
max-width: 100%;
max-height: 100%;
}
.nowPlayingPageImageContainer.nowPlayingPageImagePoster {