fix(calendar): disable banner click in phone-portrait mode

This commit is contained in:
Victor Sales 2025-10-13 13:40:13 +03:00
parent 2e1ad64d02
commit e74072ebd5

View file

@ -138,6 +138,17 @@
}
}
@media only screen and (max-width: @minimum) and (orientation: portrait) {
.cell{
.items{
.item{
pointer-events: none;
}
}
}
}
@media @phone-portrait {
.cell {
flex-direction: column;
@ -150,6 +161,7 @@
.item {
width: 100%;
pointer-events: none;
}
}
}
@ -187,6 +199,12 @@
flex-direction: row;
display: flex;
.items{
.item{
pointer-events: none;
}
}
.heading {
display: flex;
gap: 0.25rem;