fix(BottomSheet): was hidden on ipad pro in portait mode

This commit is contained in:
Tim 2024-12-16 12:10:29 +01:00
parent 52dc8e6ad2
commit 976992b28e

View file

@ -87,7 +87,13 @@
}
}
@media only screen and (min-width: @xsmall) {
@media only screen and (min-width: @small) and (orientation: portait) {
.bottom-sheet {
display: none;
}
}
@media only screen and (min-width: @xsmall) and (orientation: landscape) {
.bottom-sheet {
display: none;
}