From 9df38234c70adba0f7b5176ce37f39961e4adc46 Mon Sep 17 00:00:00 2001 From: John Corser Date: Sun, 2 Aug 2026 12:14:18 -0400 Subject: [PATCH] design(board): tighten list row vertical rhythm on desktop --- src/features/board/board.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/features/board/board.css b/src/features/board/board.css index 9d2dc5e..3e8737a 100644 --- a/src/features/board/board.css +++ b/src/features/board/board.css @@ -468,7 +468,10 @@ li.list-row { border-bottom: 1px solid var(--tf-border); border-radius: 0; box-shadow: none; - padding: 8px 14px; + /* Tighter vertical rhythm so more tasks are scannable at once (Asana-dense). + Chip-carrying rows still grow with their content; only the airy single-line + rows tighten up. */ + padding: 6px 14px; /* A list row also carries `.task-card` (for shared card styling + testids), * whose `display:flex` has equal specificity to `.list-row`'s `display:grid` * and was winning by source order — collapsing the grid so cells no longer