fix(SideDrawer): mobile landscape styles

This commit is contained in:
Timothy Z. 2025-01-24 15:40:04 +02:00
parent 2e45f097e2
commit b8415c48f2

View file

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