Skip to content

Instantly share code, notes, and snippets.

@suveshmoza
Created June 20, 2026 18:36
Show Gist options
  • Select an option

  • Save suveshmoza/489d09e9c4d1e34f6a5f9f53a2bef23b to your computer and use it in GitHub Desktop.

Select an option

Save suveshmoza/489d09e9c4d1e34f6a5f9f53a2bef23b to your computer and use it in GitHub Desktop.
Better Nova — Firefox Nova without rounded corners and borders
@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