From 5d4eceab9527713612f46e3ca4ae780e20b10fee Mon Sep 17 00:00:00 2001 From: Florian Schroedl Date: Thu, 5 Mar 2026 13:32:52 +0100 Subject: [PATCH] fix(form): add spacing between inline fieldset legend and radio buttons elements have special rendering behavior inside
that doesn't participate properly in flexbox gap. Change margin-bottom from 0 to var(--size-1) on .form-fieldset--inline .form-legend to add visible spacing. --- src/ui/form.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/form.css b/src/ui/form.css index abae017..f6ac6ce 100644 --- a/src/ui/form.css +++ b/src/ui/form.css @@ -292,7 +292,7 @@ .form-fieldset--inline .form-legend { width: 100%; - margin-bottom: 0; + margin-bottom: var(--size-1); } /* ── Input group ───────────────────────────────────────────────── */