kcscDev/egovframe-template-simple-r.../src/themes/overrides/CardContent.js

17 lines
335 B
JavaScript
Raw Normal View History

2024-01-31 07:28:08 +00:00
// ==============================|| OVERRIDES - CARD CONTENT ||============================== //
export default function CardContent() {
return {
MuiCardContent: {
styleOverrides: {
root: {
padding: 20,
'&:last-child': {
paddingBottom: 20
}
}
}
}
};
}