Reduce card list padding

This commit is contained in:
schroda
2025-05-03 12:05:11 +02:00
parent 736e556ccd
commit 11b75103eb

View File

@@ -15,9 +15,9 @@ export const ListCardContent = ({ children, ...props }: CardContentProps) => (
display: 'flex',
alignItems: 'center',
gap: 1,
p: 1.5,
p: 1,
'&:last-child': {
paddingBottom: 1.5,
paddingBottom: 1,
},
...props.sx,
}}