mirror of
https://dev.azure.com/tstanciu94/ReverseProxy/_git/ReverseProxy_Frontend
synced 2025-10-03 16:49:04 +03:00
21 lines
487 B
JavaScript
21 lines
487 B
JavaScript
import { TableCell, TableRow } from "@material-ui/core";
|
|
import { withStyles } from "@material-ui/core/styles";
|
|
|
|
export const StyledTableCell = withStyles((theme) => ({
|
|
head: {
|
|
backgroundColor: theme.palette.primary.main,
|
|
color: theme.palette.common.white
|
|
},
|
|
body: {
|
|
fontSize: 14
|
|
}
|
|
}))(TableCell);
|
|
|
|
export const StyledTableRow = withStyles((theme) => ({
|
|
root: {
|
|
"&:nth-of-type(odd)": {
|
|
backgroundColor: theme.palette.action.hover
|
|
}
|
|
}
|
|
}))(TableRow);
|