Skip to content

Commit

Permalink
Merge pull request #754 from Stremio/fix/bottom-sheet-ipad-pro
Browse files Browse the repository at this point in the history
fix(BottomSheet): was hidden on ipad pro in portait mode
  • Loading branch information
tymmesyde authored Dec 16, 2024
2 parents 16b4393 + 976992b commit d3b7482
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/common/BottomSheet/BottomSheet.less
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit d3b7482

Please sign in to comment.