From b5f1573aeffdab842961895551aaccfc402c71ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 9 Dec 2025 15:19:50 +0100 Subject: [PATCH] AppChrome: Increase header height from 40-48 (#115004) AppChrome: Inrease header height from 40-48 --- .../core/components/AppChrome/TopBar/useChromeHeaderHeight.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/app/core/components/AppChrome/TopBar/useChromeHeaderHeight.ts b/public/app/core/components/AppChrome/TopBar/useChromeHeaderHeight.ts index 3b1763b1901..a953255415d 100644 --- a/public/app/core/components/AppChrome/TopBar/useChromeHeaderHeight.ts +++ b/public/app/core/components/AppChrome/TopBar/useChromeHeaderHeight.ts @@ -94,6 +94,5 @@ export function useChromeHeaderHeight() { **/ export function getChromeHeaderLevelHeight() { // Waiting with switch to 48 until we have a story for scopes - // return config.featureToggles.unifiedNavbars ? 48 : 40; - return 40; + return config.featureToggles.unifiedNavbars || config.featureToggles.dashboardNewLayouts ? 48 : 40; }