From 7af7e41eedf4791202e71ed2cc201732f0659c70 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 10 Jul 2026 19:46:37 +0100 Subject: [PATCH] fix(ui): stop the worktrees table from always stacking inside settings (#103899) --- ui/src/styles/components.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ui/src/styles/components.css b/ui/src/styles/components.css index 6213070b0749..539804f20931 100644 --- a/ui/src/styles/components.css +++ b/ui/src/styles/components.css @@ -3041,14 +3041,16 @@ min-width: 180px; } -@media (max-width: 1100px) { +/* Settings caps .settings-workspace at 1120px, so the table container is ~1080px + wide; a 1100px stack breakpoint would collapse the grid at every window size. */ +@media (max-width: 900px) { .worktrees-table .table-head, .worktrees-table .table-row { grid-template-columns: 1fr; } } -@container (max-width: 1100px) { +@container (max-width: 900px) { .worktrees-table .table-head, .worktrees-table .table-row { grid-template-columns: 1fr;