From 70abae8e3b4b674dea90ecfc020a4b882d8a1926 Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Thu, 28 May 2026 01:49:26 -0700 Subject: [PATCH] fix(kanban): show horizontal scrollbar instead of wrapping columns MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Salvage follow-up on top of @vynxevainglory-ai's PR #29233. Keep the column-body flex:1 + min-height:0 fix (tall columns scroll internally now), but drop the flex-wrap: wrap part — instead just stop hiding the existing horizontal scrollbar. PR #523254b34 (sadiksaifi, May 18) deliberately moved the kanban board from a wrapping grid to a single-row pinned-width flex so the board stays as one stable horizontal row. The mistake in that PR was the scrollbar-width: none + ::-webkit-scrollbar { display: none } pair, which hid the affordance so columns past the viewport became visually inaccessible. Fixing that hidden-scrollbar bug while keeping the single-row design honors both contributors' intent. --- plugins/kanban/dashboard/dist/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/kanban/dashboard/dist/style.css b/plugins/kanban/dashboard/dist/style.css index d2078f9b538..9aa780e6213 100644 --- a/plugins/kanban/dashboard/dist/style.css +++ b/plugins/kanban/dashboard/dist/style.css @@ -64,9 +64,9 @@ .hermes-kanban-columns { display: flex; - flex-wrap: wrap; gap: 0.75rem; align-items: start; + overflow-x: auto; } .hermes-kanban-column {