fix: point event none for tablets on portrait mode

This commit is contained in:
Victor Sales 2025-10-16 19:59:00 +03:00
parent 3e0308dff1
commit 0433da66c1

View file

@ -206,3 +206,13 @@
}
}
}
@media screen and (min-width: @small-phone-portrait-size) and (max-width: @small) and (orientation: portrait) {
.cell {
.items {
.item {
pointer-events: none;
}
}
}
}