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

17 lines
335 B
JavaScript

// ==============================|| OVERRIDES - CARD CONTENT ||============================== //
export default function CardContent() {
return {
MuiCardContent: {
styleOverrides: {
root: {
padding: 20,
'&:last-child': {
paddingBottom: 20
}
}
}
}
};
}