chore: Update tabbrowser-tabs grid-template-columns to use var(--tab-min-height)

This commit is contained in:
Mauro Balades
2024-08-09 22:47:24 +02:00
parent 2035706c2a
commit 1553348812

View File

@@ -392,7 +392,7 @@ toolbarbutton#scrollbutton-up {
display: flex !important;
}
#tabbrowser-tabs:has(.tabbrowser-tab[pinned]) .tabbrowser-tab:nth-child(1 of :not([pinned]):not([hidden])) {
#tabbrowser-tabs:has(.tabbrowser-tab[pinned]) .tabbrowser-tab:nth-child(1 of :not([pinned]:is([fadein]):not([hidden]))) {
margin-top: 15px !important;
position: relative;
overflow: visible;
@@ -875,7 +875,7 @@ panelmultiview {
/* We have the pinned tabs on the top, next to each other,
* and the rest of the tabs are below them. */
display: grid;
grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(var(--tab-min-height), 1fr));
padding: 5px;
}