Files
my-bar/front/src/styles/theme/components/table-body.js
2025-03-12 17:54:16 +04:00

11 lines
326 B
JavaScript

import {tableCellClasses} from '@mui/material/TableCell';
import {tableRowClasses} from '@mui/material/TableRow';
export const MuiTableBody = {
styleOverrides: {
root: {
[`& .${tableRowClasses.root}:last-child`]: {[`& .${tableCellClasses.root}`]: {'--TableCell-borderWidth': 0}},
},
},
};