From 58b823285e26d00147809791a64fe7c62e3fcfc1 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 27 Nov 2024 19:56:27 +0200 Subject: [PATCH] Revert "style(next): fix tab height on horizontal layout" This reverts commit 6e90b5c6a01afa3c0be54dbe97a43119a06dd0fe. --- 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 924730a30..612f3bfad 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', '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()