From af3d90db3be8c37bfd950321811ce2215fc2b02b Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Tue, 14 Oct 2025 11:23:09 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(frontend)=20fix=20double=20scrollb?= =?UTF-8?q?ar=20on=20document=20grid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The document grid was showing a double scrollbar. It was due to the sr-only class having a width and height of 1px. We changed it to 0px, it is now fixed. --- src/frontend/apps/impress/src/pages/globals.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontend/apps/impress/src/pages/globals.css b/src/frontend/apps/impress/src/pages/globals.css index aa9a8385..dbda3055 100644 --- a/src/frontend/apps/impress/src/pages/globals.css +++ b/src/frontend/apps/impress/src/pages/globals.css @@ -92,9 +92,10 @@ nextjs-portal { /* Screen reader only - visually hidden but accessible to screen readers */ .sr-only { - position: absolute !important; + position: fixed !important; width: 1px !important; height: 1px !important; + transform: translateX(-100vw) !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important;