fix(form): remove left border-radius from buttons inside form-group

The `.form-group` CSS reset `border-radius: 0` only for `.form-input`
and `.form-select`, leaving `.btn` elements with their default radius
on all sides. This caused buttons inside input groups to have rounded
left corners instead of flush edges against adjacent inputs.
This commit is contained in:
Florian Schroedl
2026-03-11 17:09:18 +01:00
parent 051d79d65d
commit e356bc2e6a

View File

@@ -350,7 +350,8 @@
} }
.form-group > .form-input, .form-group > .form-input,
.form-group > .form-select { .form-group > .form-select,
.form-group > .btn {
border-radius: 0; border-radius: 0;
} }