mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-03-09 00:10:45 -07:00
8 lines
449 B
SCSS
8 lines
449 B
SCSS
// Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_fill_available_width.css made available under Mozilla Public License v. 2.0
|
|
// See the above repository for updates as well as full license text.
|
|
|
|
/* Why 100vw? Tab closing requires width animation to end and "none" can't be animated */
|
|
.tabbrowser-tab[fadein]:not([style^="max-width"]) {
|
|
--tab-max-width: 100vw;
|
|
max-width: var(--tab-max-width) !important;
|
|
}
|