Adjust grouped list item padding

This commit is contained in:
schroda
2024-10-12 18:32:12 +02:00
parent 954195c24e
commit 306e49d47e

View File

@@ -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),
}));