From 6df9fda2982b9a115ffe7106da4abfe1f5032105 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Wed, 24 Jul 2024 09:04:24 +0100 Subject: [PATCH] Navigation: Tweak app height when `bodyScrolling` is enabled (#90828) use vh instead of svh --- packages/grafana-ui/src/themes/GlobalStyles/page.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/themes/GlobalStyles/page.ts b/packages/grafana-ui/src/themes/GlobalStyles/page.ts index 8c8c3e0449e..ba925349ec3 100644 --- a/packages/grafana-ui/src/themes/GlobalStyles/page.ts +++ b/packages/grafana-ui/src/themes/GlobalStyles/page.ts @@ -12,7 +12,7 @@ export function getPageStyles(theme: GrafanaTheme2) { ? { display: 'flex', flexDirection: 'column', - minHeight: '100svh', + minHeight: '100vh', } : { display: 'flex',