From 1b617aa08b1b149ed8b0b0e201b470ba56871255 Mon Sep 17 00:00:00 2001 From: Marcel Date: Fri, 17 Apr 2026 12:09:20 +0200 Subject: [PATCH] fix(tag-input): increase suggestion item padding to py-3 for 44px touch target Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/lib/components/TagInput.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/TagInput.svelte b/frontend/src/lib/components/TagInput.svelte index ac8204e5..416953d6 100644 --- a/frontend/src/lib/components/TagInput.svelte +++ b/frontend/src/lib/components/TagInput.svelte @@ -184,7 +184,7 @@ function handleKeydown(e: KeyboardEvent) { aria-selected={i === activeIndex} tabindex="0" style="padding-left: {s.depth * 16 + 12}px" - class="cursor-pointer py-2 pr-3 text-sm hover:bg-muted {i === activeIndex + class="cursor-pointer py-3 pr-3 text-sm hover:bg-muted {i === activeIndex ? 'bg-muted font-bold text-ink' : s.isDirectMatch ? 'font-medium text-ink-2'