diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-17 22:08:20 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-17 22:08:20 -0400 |
commit | 640476ab01c501bbaa5b7854b561201bfe40d2ea (patch) | |
tree | 1516ebdda1180a910c4a7ff2e870058a936297e1 /programs/firefox/userChrome.nix | |
parent | add formatter (diff) | |
download | dotfiles-nix-640476ab01c501bbaa5b7854b561201bfe40d2ea.tar.gz dotfiles-nix-640476ab01c501bbaa5b7854b561201bfe40d2ea.tar.bz2 dotfiles-nix-640476ab01c501bbaa5b7854b561201bfe40d2ea.zip |
fmt
Diffstat (limited to 'programs/firefox/userChrome.nix')
-rw-r--r-- | programs/firefox/userChrome.nix | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/programs/firefox/userChrome.nix b/programs/firefox/userChrome.nix index 2deefb5..ab93747 100644 --- a/programs/firefox/userChrome.nix +++ b/programs/firefox/userChrome.nix @@ -1,23 +1,23 @@ '' -/* sidebar hack to flip contents the way i want them (arrows on the left) */ -#nav-bar-customization-target { - flex-direction: row-reverse; -} + /* sidebar hack to flip contents the way i want them (arrows on the left) */ + #nav-bar-customization-target { + flex-direction: row-reverse; + } -/* remove broken padding from sidebar hack */ -#unified-extensions-button { - padding-left: 0 !important; -} + /* remove broken padding from sidebar hack */ + #unified-extensions-button { + padding-left: 0 !important; + } -/* remove padding beside search bar */ -toolbarspring { - display: none !important; -} + /* remove padding beside search bar */ + toolbarspring { + display: none !important; + } -/* remove overflow menu and everything in it */ -#nav-bar-overflow-button, -#firefox-view-button, -#alltabs-button { - visibility: collapse; -} + /* remove overflow menu and everything in it */ + #nav-bar-overflow-button, + #firefox-view-button, + #alltabs-button { + visibility: collapse; + } '' |