Revert "style(next): fix tab height on horizontal layout"

This reverts commit 6e90b5c6a01afa3c0be54dbe97a43119a06dd0fe.
This commit is contained in:
Elian Doran 2024-11-27 19:56:27 +02:00
parent 0661e72f6e
commit 58b823285e
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', '50px')
.css('height', '40px')
.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', '50px')
.css('height', '40px')
)
.child(new FlexContainer('row')
.filling()