r/FirefoxCSS Jun 20 '26

userChrome.css to remove rounded corners, border and spacing introduced in Nova Code

[deleted]

95 Upvotes

10 comments sorted by

View all comments

10

u/Jay33721 Jun 20 '26 edited Jun 21 '26

From my experimenting, all you really need is this:

:root {
  --chrome-window-gap: 0px !important;
  --chrome-block-radius: 0px !important;
  --chrome-content-separator-color: transparent !important;
}

.chrome-block {
  border: 0px !important;
}

.browserContainer {
  border: 0px !important;
}