@@ -350,10 +350,12 @@ export default function SimpleTable(props: SimpleTableProps) {
350
350
width : 'auto' ,
351
351
display : 'grid' ,
352
352
gridTemplateColumns : gridTemplateColumns || '1fr' ,
353
+ background : theme . palette . background . default ,
353
354
[ theme . breakpoints . down ( 'sm' ) ] : {
354
355
overflowX : 'auto' , // make it responsive
355
356
} ,
356
357
'& .MuiTableCell-root' : {
358
+ borderColor : theme . palette . divider ,
357
359
padding : '8px 16px 7px 16px' ,
358
360
[ theme . breakpoints . down ( 'sm' ) ] : {
359
361
padding : '15px 24px 15px 16px' ,
@@ -363,8 +365,6 @@ export default function SimpleTable(props: SimpleTableProps) {
363
365
wordWrap : 'break-word' ,
364
366
} ,
365
367
'& .MuiTableBody-root' : {
366
- background : theme . palette . tables . body . background ,
367
-
368
368
'& .MuiTableRow-root:last-child' : {
369
369
'& .MuiTableCell-root' : {
370
370
borderBottom : 'none' ,
@@ -376,7 +376,7 @@ export default function SimpleTable(props: SimpleTableProps) {
376
376
textOverflow : 'unset' ,
377
377
whiteSpace : 'nowrap' ,
378
378
color : theme . palette . tables . head . text ,
379
- background : theme . palette . tables . head . background ,
379
+ background : theme . palette . background . muted ,
380
380
width : '100%' ,
381
381
minWidth : 'max-content' ,
382
382
} ,
0 commit comments