From 5f9057703d6c478e8a32d7539ffe45a55c897f26 Mon Sep 17 00:00:00 2001 From: Tim Date: Thu, 4 Jul 2024 15:33:04 +0200 Subject: [PATCH] fix(Calendar): hide cell items when height is too small --- src/routes/Calendar/Table/Cell/Cell.less | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/routes/Calendar/Table/Cell/Cell.less b/src/routes/Calendar/Table/Cell/Cell.less index ae9bf586d..c220df50f 100644 --- a/src/routes/Calendar/Table/Cell/Cell.less +++ b/src/routes/Calendar/Table/Cell/Cell.less @@ -126,6 +126,14 @@ } } +@media only screen and (max-height: @xxsmall) { + .cell { + .items { + display: none; + } + } +} + @media only screen and (max-width: @minimum) and (orientation: portrait) { .cell { .items { @@ -149,4 +157,4 @@ display: none; } } -} \ No newline at end of file +}