AppChrome: Increase header height from 40-48 (#115004)

AppChrome: Inrease header height from 40-48
This commit is contained in:
Torkel Ödegaard
2025-12-09 15:19:50 +01:00
committed by GitHub
parent 1f5fd1c0da
commit b5f1573aef
@@ -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;
}