Adjust grouped list item padding

This commit is contained in:
schroda
2024-10-13 23:12:48 +02:00
parent 954195c24e
commit 306e49d47e
@@ -9,6 +9,6 @@
import Box from '@mui/material/Box';
import { styled } from '@mui/material/styles';
export const StyledGroupItemWrapper = styled(Box)(() => ({
padding: '1px 10px 10px 10px',
export const StyledGroupItemWrapper = styled(Box)(({ theme }) => ({
padding: theme.spacing(0, 1, 1, 1),
}));