diff --git a/src/components/KanbanBoard.tsx b/src/components/KanbanBoard.tsx index c9407ab..a3093f5 100644 --- a/src/components/KanbanBoard.tsx +++ b/src/components/KanbanBoard.tsx @@ -1,10 +1,18 @@ import { useLinear, Status } from "../context/LinearContext"; import IssueCard from "./IssueCard"; -const STATUS_CONFIG: Record = { +const STATUS_CONFIG: Record< + Status, + { label: string; color: string; headerClassName?: string } +> = { backlog: { label: "Backlog", color: "text-status-backlog" }, todo: { label: "Todo", color: "text-status-todo" }, - "in-progress": { label: "In Progress", color: "text-status-progress" }, + "in-progress": { + label: "In Progress", + color: "text-status-progress", + headerClassName: + "flex-1 font-['Consolas_(Custom)',_sans-serif] text-right underline font-extrabold text-[40px] text-status-todo py-4 border-[5px] border-dashed border-black", + }, "in-review": { label: "In Review", color: "text-status-review" }, done: { label: "Done", color: "text-status-done" }, }; @@ -67,7 +75,12 @@ export default function KanbanBoard() { return (
-

+

{config.label}