Skip to content

Commit

Permalink
Merge pull request #160 from nowcommunity/newDevelopement
Browse files Browse the repository at this point in the history
Borders for tables
  • Loading branch information
EeroAnt authored Sep 8, 2024
2 parents 3fadb0b + 357dd9d commit 4dcb0ee
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion frontend/src/components/TableView/TableView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,14 @@ export const TableView = <T extends MRT_RowData>({
autoResetPageIndex: false,
positionPagination: selectorFn ? 'top' : 'both',
paginationDisplayMode: 'pages',
muiTablePaperProps: { elevation: 0 },
muiTablePaperProps: {
elevation: 0,
sx: {
'& .MuiTableCell-root': {
borderLeft: '1px solid rgba(224, 224, 224, 1)',
},
},
},
enableDensityToggle: false,
enableGlobalFilter: false,
enableColumnActions: false,
Expand Down

0 comments on commit 4dcb0ee

Please sign in to comment.