UNPKG

@totalsoft/rocket-ui

Version:

A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.

48 lines 1.42 kB
export default function Card(theme) { return { MuiCard: { styleOverrides: { root: { boxShadow: theme.shadows[5], borderRadius: Number(theme.shape.borderRadius) * 2, position: 'relative', zIndex: 0 // Fix Safari overflow: hidden with border radius } } }, MuiCardHeader: { defaultProps: { titleTypographyProps: { variant: 'h6' }, subheaderTypographyProps: { variant: 'body2' } }, styleOverrides: { root: { padding: theme.spacing(2, 3) }, content: { maxWidth: `calc(100% - ${theme.spacing(4)})` }, title: { whiteSpace: 'nowrap', overflow: 'hidden', textOverflow: 'ellipsis' } } }, MuiCardContent: { styleOverrides: { root: { padding: theme.spacing(1, 3, 3, 3) } } }, MuiCardActions: { styleOverrides: { root: { padding: theme.spacing(0, 3, 3) } } } }; } //# sourceMappingURL=Card.js.map