feat(firefox): lock sidebar width
This commit is contained in:
parent
3207405614
commit
bb04ac2f4f
1 changed files with 6 additions and 1 deletions
|
@ -13,10 +13,15 @@ lib.mkIf osConfig.programs.firefox.enable {
|
|||
name = "ny";
|
||||
isDefault = true;
|
||||
userChrome = ''
|
||||
/* hides the native tabs */
|
||||
/* Hides the native tabs */
|
||||
#TabsToolbar {
|
||||
visibility: collapse;
|
||||
}
|
||||
/* Fixed width for the sidebar */
|
||||
#sidebar-box {
|
||||
max-width: 17.5% !important;
|
||||
min-width: 17.5% !important;
|
||||
}
|
||||
'';
|
||||
settings = {
|
||||
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue