fix(form): increase form-field gap from size-1 to size-2

The tighter size-1 gap left too little space between the label and input.
This commit is contained in:
Florian Schroedl
2026-03-11 18:51:10 +01:00
parent 9d5db65746
commit e305109324

View File

@@ -3,7 +3,7 @@
.form-field { .form-field {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: var(--size-1); gap: var(--size-2);
margin-bottom: var(--size-4); margin-bottom: var(--size-4);
} }