From 6e90b5c6a01afa3c0be54dbe97a43119a06dd0fe Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 27 Nov 2024 19:52:03 +0200 Subject: [PATCH] style(next): fix tab height on horizontal layout --- src/public/app/layouts/desktop_layout.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/public/app/layouts/desktop_layout.js b/src/public/app/layouts/desktop_layout.js index 612f3bfad..924730a30 100644 --- a/src/public/app/layouts/desktop_layout.js +++ b/src/public/app/layouts/desktop_layout.js @@ -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()