diff --git a/src/routes/Player/SideDrawer/SideDrawer.less b/src/routes/Player/SideDrawer/SideDrawer.less index 5a3318c92..7af991dce 100644 --- a/src/routes/Player/SideDrawer/SideDrawer.less +++ b/src/routes/Player/SideDrawer/SideDrawer.less @@ -34,6 +34,7 @@ position: relative; .close-button { + display: none; position: absolute; top: 1.3rem; left: 1.3rem; @@ -94,13 +95,21 @@ @media (orientation: portrait) and (max-width: @xsmall) { .side-drawer { - max-width: 90dvw; + max-width: 100dvw; + + .close-button { + display: block; + } } } @media (orientation: landscape) and (max-width: @xsmall) { .side-drawer { max-width: 50dvw; + + .info { + max-height: 30dvh; + } } }