Skip to content

Commit

Permalink
fix(Calendar): hide cell items when height is too small
Browse files Browse the repository at this point in the history
  • Loading branch information
tymmesyde committed Jul 4, 2024
1 parent 098a6cb commit 5f90577
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/routes/Calendar/Table/Cell/Cell.less
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -149,4 +157,4 @@
display: none;
}
}
}
}

0 comments on commit 5f90577

Please sign in to comment.