fix(form): add spacing between inline fieldset legend and radio buttons

<legend> elements have special rendering behavior inside <fieldset>
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.
This commit is contained in:
Florian Schroedl
2026-03-05 13:32:52 +01:00
parent d2395fda44
commit 5d4eceab95

View File

@@ -292,7 +292,7 @@
.form-fieldset--inline .form-legend { .form-fieldset--inline .form-legend {
width: 100%; width: 100%;
margin-bottom: 0; margin-bottom: var(--size-1);
} }
/* ── Input group ───────────────────────────────────────────────── */ /* ── Input group ───────────────────────────────────────────────── */