diff --git a/src/components/panels/task-board-panel.tsx b/src/components/panels/task-board-panel.tsx index e2743c7..0c7410d 100644 --- a/src/components/panels/task-board-panel.tsx +++ b/src/components/panels/task-board-panel.tsx @@ -744,7 +744,7 @@ export function TaskBoardPanel() {
{Array.from({ length: 4 }).map((_, colIdx) => ( -
+
@@ -932,7 +932,7 @@ export function TaskBoardPanel() { key={column.key} role="region" aria-label={t('columnAriaLabel', { title: column.title, count: tasksByStatus[column.key]?.length || 0 })} - className="flex-1 min-w-80 min-h-0 bg-surface-0 border border-border/60 rounded-xl flex flex-col transition-colors duration-200 [&.drag-over]:border-primary/40 [&.drag-over]:bg-primary/[0.02]" + className="flex-1 min-w-40 min-h-0 bg-surface-0 border border-border/60 rounded-xl flex flex-col transition-colors duration-200 [&.drag-over]:border-primary/40 [&.drag-over]:bg-primary/[0.02]" onDragEnter={(e) => handleDragEnter(e, column.key)} onDragLeave={handleDragLeave} onDragOver={handleDragOver}