Skip to content

Commit abda639

Browse files
committed
Alternate Colors on Rows
Signed-off-by: Namanv0509 <[email protected]>
1 parent 58c23dd commit abda639

File tree

1 file changed

+4
-2
lines changed
  • src/sections/Projects/Sistent/identity/color

1 file changed

+4
-2
lines changed

src/sections/Projects/Sistent/identity/color/code.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,11 +531,13 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
531531
fontSize: "0.875rem",
532532
padding: "0.75rem",
533533
borderBottom: `1px solid ${theme.palette.divider}`,
534+
borderRadius: "4px",
534535
}));
535536

536-
const StyledHeaderCell = styled(StyledTableCell)({
537+
const StyledHeaderCell = styled(StyledTableCell)(({ theme }) => ({
537538
fontWeight: 600,
538-
});
539+
color: theme.palette.background.default,
540+
}));
539541

540542
const ColorCode = () => {
541543
const { isDark } = useStyledDarkMode();

0 commit comments

Comments
 (0)