style(client): improve background for full-width tab bar

This commit is contained in:
Elian Doran 2024-11-22 21:41:23 +02:00
parent 91c4ea333e
commit 15b9f38439
No known key found for this signature in database
2 changed files with 5 additions and 1 deletions

View File

@ -99,7 +99,7 @@ export default class DesktopLayout {
return new RootContainer()
.setParent(appContext)
.optChild(launcherPaneIsHorizontal, new FlexContainer('row')
.child(tabBar)
.child(tabBar.class("full-width"))
.css('height', '40px')
)
.optChild(launcherPaneIsHorizontal, launcherPane)

View File

@ -55,6 +55,10 @@ const TAB_ROW_TPL = `
background: var(--main-background-color);
overflow: hidden;
}
.tab-row-widget.full-width {
background: var(--launcher-pane-background-color);
}
.tab-row-widget * {
box-sizing: inherit;