From af9bf81102932766e28ac9f184bf76ae6dea7f35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Mon, 24 Apr 2023 10:52:12 +0200 Subject: [PATCH] AppChrome: Fix scrollbar issue for small (mobile) breakpoint (#67058) --- public/app/core/components/AppChrome/AppChrome.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/core/components/AppChrome/AppChrome.tsx b/public/app/core/components/AppChrome/AppChrome.tsx index 2ab7cc8ad84..f140eaa06a9 100644 --- a/public/app/core/components/AppChrome/AppChrome.tsx +++ b/public/app/core/components/AppChrome/AppChrome.tsx @@ -109,6 +109,7 @@ const getStyles = (theme: GrafanaTheme2) => { pageContainer: css({ label: 'page-container', flexGrow: 1, + minHeight: 0, }), }; };