From 976992b28efdcfa9745b7c798e3dd26975c3406c Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 16 Dec 2024 12:10:29 +0100 Subject: [PATCH] fix(BottomSheet): was hidden on ipad pro in portait mode --- src/common/BottomSheet/BottomSheet.less | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/common/BottomSheet/BottomSheet.less b/src/common/BottomSheet/BottomSheet.less index e0d756477..4ac68ead6 100644 --- a/src/common/BottomSheet/BottomSheet.less +++ b/src/common/BottomSheet/BottomSheet.less @@ -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; }