source: src/theme/overrides/components/card.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 720 bytes
Line 
1import { Theme } from '@mui/material/styles';
2
3// ----------------------------------------------------------------------
4
5export function card(theme: Theme) {
6 return {
7 MuiCard: {
8 styleOverrides: {
9 root: {
10 position: 'relative',
11 boxShadow: theme.customShadows.card,
12 borderRadius: theme.shape.borderRadius * 2,
13 zIndex: 0, // Fix Safari overflow: hidden with border radius
14 },
15 },
16 },
17 MuiCardHeader: {
18 styleOverrides: {
19 root: {
20 padding: theme.spacing(3, 3, 0),
21 },
22 },
23 },
24 MuiCardContent: {
25 styleOverrides: {
26 root: {
27 padding: theme.spacing(3),
28 },
29 },
30 },
31 };
32}
Note: See TracBrowser for help on using the repository browser.