Drawer: Fix size on mobile (#90037)

fix drawer size on mobile
This commit is contained in:
Ashley Harrison
2024-07-04 11:19:19 +01:00
committed by GitHub
parent 5ed5a2de2a
commit bcb168c39d
@@ -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',
},
});
}