From dd747946ea3bbed0c49389b1c0685c1e19a8ef0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gjermund=20H=C3=B8s=C3=B8ien=20Wiggen?= Date: Tue, 9 Jun 2026 22:18:49 +0200 Subject: [PATCH] fix: wider resize handles, table minWidth instead of width 100% - table-layout: fixed with minWidth instead of width:100% to avoid browser recalculating explicit column widths - Wider resize handles (w-3, 12px) for easier grabbing - Better visibility on hover Co-Authored-By: Claude Opus 4.8 --- web/src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/app/page.tsx b/web/src/app/page.tsx index 571e454..c578dfd 100644 --- a/web/src/app/page.tsx +++ b/web/src/app/page.tsx @@ -891,7 +891,7 @@ function TicketWorkbenchContent() { ) : ( <> {/* Table layout for consistent column alignment */} -
+
{/* Column header */}
- {/* Resize handle: drags the boundary, resizes the column to the LEFT */} + {/* Resize handle: drags the boundary, resizes column to the LEFT */} {idx > 0 && (
handleColumnResize(arr[idx - 1].key, col.key, e)} /> )}