From 204be178a3b28f268cc9432e88ac33445e781a4b Mon Sep 17 00:00:00 2001 From: Twest2 Date: Mon, 15 Jun 2026 17:39:39 -0500 Subject: [PATCH] Fix cramped spacing of the Quick Actions search hint The "Type to search, arrows to move, Enter to open." hint had no margin, so it sat flush against the search input above while the results list below it had a 10px margin + 8px padding before its divider - lopsided spacing. Make .quick-actions a flex column with a uniform 8px gap so the hint sits evenly between the input and the results divider. Co-Authored-By: Claude Sonnet 4.6 --- app/renderer/style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/renderer/style.css b/app/renderer/style.css index f0bda60..4e2bcca 100644 --- a/app/renderer/style.css +++ b/app/renderer/style.css @@ -601,6 +601,9 @@ fieldset legend { .quick-actions { width: min(760px, 92vw); + display: flex; + flex-direction: column; + gap: 8px; } .quick-actions input { width: 100%; @@ -608,7 +611,6 @@ fieldset legend { padding: 11px 12px; } .qa-results { - margin-top: 10px; max-height: 360px; overflow-y: auto; display: flex;