From 042fc61542d217c1751d13ac360a01232b14a494 Mon Sep 17 00:00:00 2001 From: trueheads Date: Sun, 21 Dec 2025 17:04:02 -0600 Subject: [PATCH] adjusted max-width scaling for kanban swimlanes --- apps/ui/src/hooks/use-responsive-kanban.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ui/src/hooks/use-responsive-kanban.ts b/apps/ui/src/hooks/use-responsive-kanban.ts index 1c717ac6..d2efb1cf 100644 --- a/apps/ui/src/hooks/use-responsive-kanban.ts +++ b/apps/ui/src/hooks/use-responsive-kanban.ts @@ -14,8 +14,8 @@ export interface ResponsiveKanbanConfig { */ const DEFAULT_CONFIG: ResponsiveKanbanConfig = { columnWidth: 288, // 18rem = 288px (w-72) - columnMinWidth: 280, // Minimum column width - increased to ensure usability - columnMaxWidth: 360, // Maximum column width to ensure responsive scaling + columnMinWidth: 280, // Minimum column width - ensures usability + columnMaxWidth: Infinity, // No max width - columns scale evenly to fill viewport gap: 20, // gap-5 = 20px padding: 40, // px-5 on both sides = 40px (matches gap between columns) };