Merge pull request #754 from Stremio/fix/bottom-sheet-ipad-pro

fix(BottomSheet): was hidden on ipad pro in portait mode
This commit is contained in:
Tim 2024-12-16 12:17:08 +01:00 committed by GitHub
commit d3b7482d2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
}