From e33301f02e765096e3ae252258e48a644a3f5f3f Mon Sep 17 00:00:00 2001 From: brausjonas Date: Tue, 30 May 2023 04:00:17 +0200 Subject: [PATCH] Prevent AutoScroll On Resize --- anwendung/src/styles/globals.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/anwendung/src/styles/globals.css b/anwendung/src/styles/globals.css index e1db99f..8b01750 100644 --- a/anwendung/src/styles/globals.css +++ b/anwendung/src/styles/globals.css @@ -251,15 +251,13 @@ Calender View .calender-container { + position: relative; max-height: 60vh; overflow-y: scroll; + overflow-anchor: none; display: grid; } -.calender-container::-webkit-scrollbar-button { - display: none; -} - .content { grid-area: 1 / 1; }