From 78df641b389386d9d2100a938dd9b41a72fc2306 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Wed, 1 Nov 2023 10:41:30 +0000 Subject: [PATCH] Navigation: Make page container automatically scroll when overflowing (#77489) add overflow: auto to page container --- 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 b73009538a6..dc5d59cd069 100644 --- a/public/app/core/components/AppChrome/AppChrome.tsx +++ b/public/app/core/components/AppChrome/AppChrome.tsx @@ -163,6 +163,7 @@ const getStyles = (theme: GrafanaTheme2) => { flexGrow: 1, minHeight: 0, minWidth: 0, + overflow: 'auto', }), skipLink: css({ position: 'absolute',