style(next): improve tab height on horizontal further

This commit is contained in:
Elian Doran 2024-11-30 00:58:59 +02:00
parent 921f216872
commit 0ea4171b1b
No known key found for this signature in database
2 changed files with 4 additions and 2 deletions

View File

@ -99,7 +99,8 @@ export default class DesktopLayout {
return new RootContainer(launcherPaneIsHorizontal)
.setParent(appContext)
.class((launcherPaneIsHorizontal ? "horizontal" : "vertical") + "-layout")
.optChild(launcherPaneIsHorizontal, new FlexContainer('row')
.optChild(launcherPaneIsHorizontal, new FlexContainer('row')
.class("tab-row-container")
.child(new TabRowWidget().class("full-width"))
.child(new TitleBarButtonsWidget())
.css('height', '40px')

View File

@ -608,7 +608,8 @@ html body #left-pane .quick-search:focus-within .search-button:hover,
height: var(--tab-bar-height) !important;
}
.tab-row-widget {
.tab-row-widget,
.tab-row-container {
background: transparent !important;
height: var(--tab-bar-height) !important;
}