diff --git a/app/(app)/dashboard/Board.tsx b/app/(app)/dashboard/Board.tsx
index 172f382..13d6037 100644
--- a/app/(app)/dashboard/Board.tsx
+++ b/app/(app)/dashboard/Board.tsx
@@ -98,7 +98,7 @@ export default function Board({ tasks }: { tasks: Task[] }) {
{/* Columns Grid */}
-
+
{COLUMNS.map((col) => {
const columnTasks = tasks.filter((t) => t.status === col.id);
return (
diff --git a/app/globals.css b/app/globals.css
index afd7e10..244cbb9 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -31,3 +31,7 @@
-moz-osx-font-smoothing: grayscale;
}
}
+
+@utility grid-auto-fit-450 {
+ grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
+}