This commit is contained in:
2023-10-06 14:57:33 +07:00
parent 1d11e06178
commit 5376873552
50 changed files with 3683 additions and 150 deletions

View File

@@ -0,0 +1,10 @@
import { Button, Card, Paper, TableRow } from '@mui/material';
import { TableCell, styled as materialStyled } from '@mui/material';
import { LoadingButton } from '@mui/lab';
// export const HeaderCell = materialStyled(TableCell)(({ theme }) => ({
// backgroundColor: theme.palette.background.neutral,
// borderBottom: 'none',
// paddingTop: '16px',
// paddingBottom: '16px',
// }));

View File

@@ -25,7 +25,7 @@ export default function Table(theme: Theme) {
color: theme.palette.text.secondary,
backgroundColor: theme.palette.background.neutral,
'&:first-of-type': {
paddingLeft: theme.spacing(3),
// paddingLeft: theme.spacing(3),
borderTopLeftRadius: theme.shape.borderRadius,
borderBottomLeftRadius: theme.shape.borderRadius,
boxShadow: `inset 8px 0 0 ${theme.palette.background.paper}`,
@@ -48,6 +48,7 @@ export default function Table(theme: Theme) {
'&:last-of-type': {
paddingRight: theme.spacing(3),
},
borderBottom: '1px solid rgba(145, 158, 171, 0.24)',
},
},
},