23 lines
483 B
Nix
23 lines
483 B
Nix
''
|
|
/* 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 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;
|
|
}
|
|
''
|