From b78d881bf66ebe63d6c4c955d210a853633acdae Mon Sep 17 00:00:00 2001 From: MerlinScheurer Date: Wed, 29 Jan 2025 18:07:28 +0100 Subject: [PATCH] Fix scrollbar causing page flicker/jiggle --- frontend/src/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/style.css b/frontend/src/style.css index 5a4f6a5e..e9c59492 100644 --- a/frontend/src/style.css +++ b/frontend/src/style.css @@ -16,6 +16,8 @@ } html { + width: 100vw; + overflow-x: hidden; height: 100%; scrollbar-color: var(--accent-font-dark) #0000; }