Fix Styling for kanban board, removed encrpytion for gmail as it was affecting connection

This commit is contained in:
cesnimda
2026-03-21 20:03:50 +01:00
parent 793ed6eb65
commit 2b0e86f0ac
6 changed files with 54 additions and 26 deletions
+2 -2
View File
@@ -159,7 +159,7 @@ export default function JobFlowBar({ job, history = [] }: { job: JobApplication
<React.Fragment key={`${item.key}-${item.at.toISOString()}`}>
<Chip
icon={item.icon as React.ReactElement}
label={`${item.label} · ${item.at.toLocaleDateString()}`}
label={`${item.label} - ${item.at.toLocaleDateString()}`}
sx={{
fontWeight: 800,
color: theme.palette.getContrastText(item.color),
@@ -170,7 +170,7 @@ export default function JobFlowBar({ job, history = [] }: { job: JobApplication
/>
{index < items.length - 1 ? (
<Typography sx={{ color: "text.secondary", fontWeight: 900 }}>
?
{"->"}
</Typography>
) : null}
</React.Fragment>