From 41693736933cf0df03a71b31ec1d11c4cd5ae77d Mon Sep 17 00:00:00 2001 From: Marcel Date: Wed, 27 May 2026 12:19:37 +0200 Subject: [PATCH] fix(dates): meet 48px touch target on RANGE end-date input The end-date input used px-2 py-3 with no min-h while the sibling precision select sets min-h-[48px]. Add min-h-[48px] so the RANGE form is uniformly senior-friendly (WCAG 2.2 2.5.8, matches the select). Refs #666 Co-Authored-By: Claude Opus 4.7 --- frontend/src/lib/document/WhoWhenSection.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/document/WhoWhenSection.svelte b/frontend/src/lib/document/WhoWhenSection.svelte index bd5ddd80..1a312e63 100644 --- a/frontend/src/lib/document/WhoWhenSection.svelte +++ b/frontend/src/lib/document/WhoWhenSection.svelte @@ -155,7 +155,7 @@ $effect(() => { oninput={handleEndDateInput} placeholder={m.form_placeholder_date()} maxlength="10" - class="block w-full rounded border border-line px-2 py-3 text-sm shadow-sm focus:outline-none focus-visible:ring-2 focus-visible:ring-focus-ring" + class="block min-h-[48px] w-full rounded border border-line px-2 py-3 text-sm shadow-sm focus:outline-none focus-visible:ring-2 focus-visible:ring-focus-ring" /> {/if}