fix: improve CSS layout with box-sizing reset, responsive alerts, and form spacing

- Add universal box-sizing: border-box reset to base styles
- Make alert component responsive with container queries (flex-wrap,
  full-width title/body at narrow widths)
- Increase form legend margin-bottom from --size-1 to --size-3
This commit is contained in:
Florian Schroedl
2026-03-11 11:09:47 +01:00
parent 828d467226
commit 13508f4654
3 changed files with 16 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
.alert { .alert {
container-type: inline-size;
position: relative; position: relative;
display: flex; display: flex;
flex-wrap: wrap;
align-items: center; align-items: center;
gap: var(--size-3); gap: var(--size-3);
padding: var(--size-4) var(--size-6); padding: var(--size-4) var(--size-6);
@@ -19,6 +21,13 @@
margin: 0; margin: 0;
} }
@container (max-width: 24rem) {
.alert-title,
.alert-body {
flex-basis: 100%;
}
}
.alert-success { .alert-success {
border: none; border: none;
color: var(--success); color: var(--success);

View File

@@ -58,7 +58,11 @@
(defn base-css (defn base-css
"Generate base body/reset styles." "Generate base body/reset styles."
[] []
"body { "*, *::before, *::after {
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
margin: 0; margin: 0;
background: var(--bg-0); background: var(--bg-0);

View File

@@ -334,12 +334,12 @@
font-size: var(--font-sm); font-size: var(--font-sm);
font-weight: 500; font-weight: 500;
color: var(--fg-0); color: var(--fg-0);
margin-bottom: var(--size-1); margin-bottom: var(--size-3);
} }
.form-fieldset--inline .form-legend { .form-fieldset--inline .form-legend {
width: 100%; width: 100%;
margin-bottom: var(--size-1); margin-bottom: var(--size-3);
} }
/* ── Input group ───────────────────────────────────────────────── */ /* ── Input group ───────────────────────────────────────────────── */