From 0433da66c11c5bf83956425c8ae533f3bc46c06c Mon Sep 17 00:00:00 2001 From: Victor Sales <36749678+v1ctorsales@users.noreply.github.com> Date: Thu, 16 Oct 2025 19:59:00 +0300 Subject: [PATCH] fix: point event none for tablets on portrait mode --- src/routes/Calendar/Table/Cell/Cell.less | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/routes/Calendar/Table/Cell/Cell.less b/src/routes/Calendar/Table/Cell/Cell.less index 06304fb24..c1f25fe46 100644 --- a/src/routes/Calendar/Table/Cell/Cell.less +++ b/src/routes/Calendar/Table/Cell/Cell.less @@ -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; + } + } + } +}