From 8a0befa1c78ca9c512bfc90961448daf31f08561 Mon Sep 17 00:00:00 2001 From: Aneurin Barker Snook Date: Sat, 5 Sep 2026 00:23:53 +0100 Subject: [PATCH] Stretch the add-icon buttons to their row's height; bigger glyph Dropped the hardcoded 2rem height -- .field-row/.kanban__new are flex rows with the default align-items: stretch, so the button now fills to match its compact field's actual height instead of a guessed value that had to be kept in sync with it. Also bumped the "+" from 1.1rem to 1.4rem. Co-Authored-By: Claude Sonnet 5 --- web/src/style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/web/src/style.css b/web/src/style.css index f389d7d..7b4f144 100644 --- a/web/src/style.css +++ b/web/src/style.css @@ -1050,13 +1050,16 @@ button[type="submit"]:disabled:not(.btn-icon), .btn-icon { flex: none; width: 2rem; - height: 2rem; + /* No explicit height -- .field-row/.kanban__new are flex rows with the + default align-items: stretch, so this fills the row to match its + compact field's height instead of guessing a value that has to be + kept in sync with it. */ padding: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); background: transparent; color: var(--muted); - font-size: 1.1rem; + font-size: 1.4rem; line-height: 1; display: inline-flex; align-items: center;