@prabink/react-node-cli
Version:
React Node Application Generator & Helpers To Serve React Build, Push to github & Export industry level react project structure
35 lines (33 loc) • 796 B
JavaScript
// ----------------------------------------------------------------------
export default function Card(theme) {
return {
MuiCard: {
styleOverrides: {
root: {
boxShadow: theme.customShadows.z16,
borderRadius: theme.shape.borderRadiusMd,
position: 'relative',
zIndex: 0 // Fix Safari overflow: hidden with border radius
}
}
},
MuiCardHeader: {
defaultProps: {
titleTypographyProps: { variant: 'h6' },
subheaderTypographyProps: { variant: 'body2' }
},
styleOverrides: {
root: {
padding: theme.spacing(3, 3, 0)
}
}
},
MuiCardContent: {
styleOverrides: {
root: {
padding: theme.spacing(3)
}
}
}
};
}