From f45247a278f1c9b1910e5c4ad5cc6e705de694e0 Mon Sep 17 00:00:00 2001 From: towards-a-new-leftypol Date: Sun, 31 Mar 2024 03:28:39 +0000 Subject: [PATCH] Fix top bar on windows/firefox which caused the page to scroll horizontally. (jungle theme) --- stylesheets/jungle.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stylesheets/jungle.css b/stylesheets/jungle.css index d4260c33..e1fa38ba 100644 --- a/stylesheets/jungle.css +++ b/stylesheets/jungle.css @@ -20,7 +20,9 @@ body { .bar.top { position: relative; - width: 100vw; + width: calc(100% + 8px); + box-sizing: border-box; + padding: 0 .25em; left: -4px; }