ran format command
All checks were successful
checks / test (pull_request) Successful in 2m45s
checks-impure / test (pull_request) Successful in 25s

This commit is contained in:
sara-pervana
2023-11-21 18:04:58 +01:00
parent f92461de2c
commit 72da175bc2
3 changed files with 27 additions and 28 deletions

View File

@@ -1,6 +1,6 @@
import { styled } from '@mui/material/styles';
import TableCell, { tableCellClasses } from '@mui/material/TableCell';
import TableRow from '@mui/material/TableRow';
import { styled } from "@mui/material/styles";
import TableCell, { tableCellClasses } from "@mui/material/TableCell";
import TableRow from "@mui/material/TableRow";
export const StyledTableCell = styled(TableCell)(({ theme }) => ({
[`&.${tableCellClasses.head}`]: {
@@ -13,11 +13,11 @@ export const StyledTableCell = styled(TableCell)(({ theme }) => ({
}));
export const StyledTableRow = styled(TableRow)(({ theme }) => ({
'&:nth-of-type(odd)': {
"&:nth-of-type(odd)": {
backgroundColor: theme.palette.action.hover,
},
// hide last border
'&:last-child td, &:last-child th': {
"&:last-child td, &:last-child th": {
border: 0,
},
}));
}));