From 9b916f62041c403c0a5c8f4e561fcf42a100ed0d Mon Sep 17 00:00:00 2001 From: Sli Date: Fri, 14 Feb 2025 13:09:05 +0100 Subject: [PATCH] Fix wrong overflow on chrome for calendar --- com/static/com/components/ics-calendar.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/com/static/com/components/ics-calendar.scss b/com/static/com/components/ics-calendar.scss index 21aa55d7..6c86cce0 100644 --- a/com/static/com/components/ics-calendar.scss +++ b/com/static/com/components/ics-calendar.scss @@ -75,10 +75,10 @@ ics-calendar { } td { - overflow-x: visible; // Show events on multiple days + overflow: visible; // Show events on multiple days } - //Reset from style.scss + //Reset from style.scss table { box-shadow: none; border-radius: 0px; @@ -86,13 +86,13 @@ ics-calendar { margin: 0px; } - // Reset from style.scss + // Reset from style.scss thead { background-color: white; color: black; } - // Reset from style.scss + // Reset from style.scss tbody>tr { &:nth-child(even):not(.highlight) { background: white;