From d31c3281acd0d3ef91c708f532805322ee19c3b6 Mon Sep 17 00:00:00 2001 From: plsfix-bot Date: Fri, 14 Nov 2025 16:57:32 +0000 Subject: [PATCH] style: update KanbanBoard background to paper-like texture adjust background-color, background-image, background-size, background-repeat, and box-shadow in src/components/KanbanBoard.tsx to give the kanban board a paper-like appearance. Co-authored-by: Tim C Co-authored-by: plsfixai --- src/components/KanbanBoard.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/KanbanBoard.tsx b/src/components/KanbanBoard.tsx index c9407ab..715bfe5 100644 --- a/src/components/KanbanBoard.tsx +++ b/src/components/KanbanBoard.tsx @@ -57,7 +57,16 @@ export default function KanbanBoard() { return (
-
+
{columns.map((status) => { const columnIssues = filteredIssues.filter( (issue) => issue.status === status