From bcb168c39d247def099b76d58076c74e95f1a87d Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Thu, 4 Jul 2024 11:19:19 +0100 Subject: [PATCH] Drawer: Fix size on mobile (#90037) fix drawer size on mobile --- 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 9d5defacf03..b6487f06563 100644 --- a/packages/grafana-ui/src/components/Drawer/Drawer.tsx +++ b/packages/grafana-ui/src/components/Drawer/Drawer.tsx @@ -379,7 +379,7 @@ function getWrapperStyles(theme: GrafanaTheme2, size: 'sm' | 'md' | 'lg') { [theme.breakpoints.down('md')]: { width: `calc(100% - ${theme.spacing(2)}) !important`, - minWidth: 0, + minWidth: '0 !important', }, }); }