This repository has been archived on 2021-01-21. You can view files and clone it, but cannot push or open issues or pull requests.
blurredfox-nord/userContent.css

25 lines
483 B
CSS

@import url('userChrome.css');
/* Removes the white loading page */
/* url(about:newtab), url(about:home) */
@-moz-document url(about:blank) {
html:not(#ublock0-epicker),
html:not(#ublock0-epicker)
body,
#newtab-customize-overlay {
background: var(--bf-blank-page-bg) !important;
}
}
/* Hide scrollbar */
:root{
scrollbar-width: none !important;
}
/* Hide incognito scrollbar */
@-moz-document url(about:privatebrowsing) {
:root{
scrollbar-width: none !important;
}
}