Created
June 20, 2026 18:36
-
-
Save suveshmoza/489d09e9c4d1e34f6a5f9f53a2bef23b to your computer and use it in GitHub Desktop.
Better Nova — Firefox Nova without rounded corners and borders
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media -moz-pref('browser.nova.enabled') { | |
| :root { | |
| --chrome-content-separator-color: unset !important; | |
| --chrome-window-gap: 0px !important; | |
| } | |
| #browser { | |
| padding: 0 !important; | |
| border-radius: 0 !important; | |
| } | |
| #navigator-toolbox { | |
| margin: 0 !important; | |
| border-radius: 0 !important; | |
| } | |
| #tabbrowser-tabbox { | |
| border-radius: 0 !important; | |
| } | |
| #nav-bar { | |
| border-top: none !important; | |
| } | |
| #tabbrowser-tabpanels > :not(.split-view-panel) .browserContainer { | |
| border-radius: 0 !important; | |
| } | |
| .tab-background { | |
| border-radius: 8px !important; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment