1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import { makeStyles } from '@mui/styles';
export default makeStyles((theme) => ({
table: {
marginBottom: theme.spacing(10),
},
columnAction: {
width: '1%',
paddingRight: theme.spacing(1),
},
container: {
marginTop: theme.spacing(2),
},
buttons: {
marginTop: theme.spacing(2),
marginBottom: theme.spacing(2),
display: 'flex',
justifyContent: 'space-evenly',
'& > *': {
flexBasis: '33%',
},
},
details: {
display: 'flex',
flexDirection: 'column',
gap: theme.spacing(2),
paddingBottom: theme.spacing(3),
},
verticalActions: {
display: 'flex',
flexDirection: 'column',
},
}));
|