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:
@@ -292,7 +292,7 @@
|
||||
|
||||
.form-fieldset--inline .form-legend {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
margin-bottom: var(--size-1);
|
||||
}
|
||||
|
||||
/* ── Input group ───────────────────────────────────────────────── */
|
||||
|
||||
Reference in New Issue
Block a user