mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-14 13:10:29 +00:00
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:
commit
d3b7482d2d
1 changed files with 7 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue