From af3c88b00030e250d86664b00b2e6fc8542c46b5 Mon Sep 17 00:00:00 2001 From: Alexander Platov <sas_lord@mail.ru> Date: Sun, 28 Jan 2024 20:38:46 +0300 Subject: [PATCH] Fixed Planning Calendar glitches (#4462) Signed-off-by: Alexander Platov <sas_lord@mail.ru> --- .../calendar-resources/src/components/DayCalendar.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/calendar-resources/src/components/DayCalendar.svelte b/plugins/calendar-resources/src/components/DayCalendar.svelte index 7ed325cdc2..c9ec0af8fa 100644 --- a/plugins/calendar-resources/src/components/DayCalendar.svelte +++ b/plugins/calendar-resources/src/components/DayCalendar.svelte @@ -1027,7 +1027,7 @@ <style lang="scss"> .calendar-container { - will-change: scroll-position; + will-change: transform; position: relative; display: grid; @@ -1168,13 +1168,13 @@ z-index: 15; &:not(.head) { - top: 3.5rem; + top: calc(3.5rem - 0.5px); border-top: 1px solid var(--theme-divider-color); border-bottom: 1px solid var(--theme-divider-color); } &.head, &.top { - top: 0; + top: -0.5px; } &.zm { top: var(--calendar-ad-height, 2.25rem);