Merge pull request #811 from Stremio/fix/side-drawer-landscape-mobile-styles

SideDrawer: improve mobile styles
This commit is contained in:
Timothy Z. 2025-01-24 17:23:51 +02:00 committed by GitHub
commit 8ff35722ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -84,7 +84,7 @@
}
}
@media (orientation: portrait) and (max-width: @xsmall) {
@media @phone-portrait {
.side-drawer {
max-width: 100dvw;
@ -94,12 +94,12 @@
}
}
@media (orientation: landscape) and (max-width: @xsmall) {
@media @phone-landscape {
.side-drawer {
max-width: 50dvw;
.info {
max-height: 30dvh;
flex: 1;
}
}
}