From 16099c9913abfd4747066cf66121db9153bbe17b Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Mon, 3 Jun 2024 15:35:46 +0100 Subject: [PATCH] Drawer: Fix overflow to stop drag handle being cut off (#88500) fix drawer overflow to stop drag handle being cut off --- packages/grafana-ui/src/components/Drawer/Drawer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/Drawer/Drawer.tsx b/packages/grafana-ui/src/components/Drawer/Drawer.tsx index fc161a10615..3d600cd1f19 100644 --- a/packages/grafana-ui/src/components/Drawer/Drawer.tsx +++ b/packages/grafana-ui/src/components/Drawer/Drawer.tsx @@ -258,7 +258,7 @@ const getStyles = (theme: GrafanaTheme2) => { drawerContent: css({ backgroundColor: `${theme.colors.background.primary} !important`, display: 'flex', - overflow: 'unset', + overflow: 'unset !important', flexDirection: 'column', }), drawerMotion: css({