fix(Calendar): hide cell items when height is too small

This commit is contained in:
Tim 2024-07-04 15:33:04 +02:00
parent 098a6cb6ff
commit 5f9057703d

View file

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