Removed AdminLTE, some minor improvements
This commit is contained in:
12
react/shared/elements/table-body-striped.jsx
Normal file
12
react/shared/elements/table-body-striped.jsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import {styled, TableBody} from "@mui/material";
|
||||
|
||||
const TableBodyStriped = styled(TableBody)(({ theme }) => ({
|
||||
'& tr:nth-of-type(odd)': {
|
||||
backgroundColor: theme.palette.grey[0],
|
||||
},
|
||||
'& tr:nth-of-type(even)': {
|
||||
backgroundColor: theme.palette.grey[100],
|
||||
},
|
||||
}));
|
||||
|
||||
export default TableBodyStriped;
|
||||
Reference in New Issue
Block a user