We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58c23dd commit abda639Copy full SHA for abda639
1 file changed
src/sections/Projects/Sistent/identity/color/code.js
@@ -531,11 +531,13 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
531
fontSize: "0.875rem",
532
padding: "0.75rem",
533
borderBottom: `1px solid ${theme.palette.divider}`,
534
+ borderRadius: "4px",
535
}));
536
-const StyledHeaderCell = styled(StyledTableCell)({
537
+const StyledHeaderCell = styled(StyledTableCell)(({ theme }) => ({
538
fontWeight: 600,
-});
539
+ color: theme.palette.background.default,
540
+}));
541
542
const ColorCode = () => {
543
const { isDark } = useStyledDarkMode();
0 commit comments