From 9153e1c89f9145574ff63abccb9fd16e0534c39a Mon Sep 17 00:00:00 2001 From: Jonathan Hodgson Date: Thu, 22 Apr 2021 10:12:15 +0100 Subject: [PATCH] Firefox 89's top bar is 10px bigger than it was before This commit hides an extra 10px so I don't need to see it. --- NOSTOW/firefox/userChrome.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NOSTOW/firefox/userChrome.css b/NOSTOW/firefox/userChrome.css index fb43858a..5621cad5 100644 --- a/NOSTOW/firefox/userChrome.css +++ b/NOSTOW/firefox/userChrome.css @@ -16,7 +16,7 @@ /* hides the url bar unless I hover over it */ #navigator-toolbox { - margin-top: -72px; + margin-top: -82px; transition: 0.2s margin-top ease-out; border-bottom-width: 0; }