style(next): fix tab height on horizontal layout

This commit is contained in:
Elian Doran 2024-11-27 19:52:03 +02:00
parent 8988d93ff0
commit 6e90b5c6a0
No known key found for this signature in database

View File

@ -101,7 +101,7 @@ export default class DesktopLayout {
.optChild(launcherPaneIsHorizontal, new FlexContainer('row')
.child(new TabRowWidget().class("full-width"))
.child(new TitleBarButtonsWidget())
.css('height', '40px')
.css('height', '50px')
.css('background-color', 'var(--launcher-pane-background-color)')
.setParent(appContext)
)
@ -120,7 +120,7 @@ export default class DesktopLayout {
.optChild(!launcherPaneIsHorizontal, new FlexContainer('row')
.child(new TabRowWidget())
.child(new TitleBarButtonsWidget())
.css('height', '40px')
.css('height', '50px')
)
.child(new FlexContainer('row')
.filling()