diff options
| author | winter | 2025-02-14 21:45:30 +0000 |
|---|---|---|
| committer | winter | 2025-02-14 21:56:18 +0000 |
| commit | 5af36fccc0904cf743e3d598813d246e3fa52634 (patch) | |
| tree | b6de9224c62b80cce95fa2385d0459e63af4b3ae /static/form.css | |
| parent | 241eb9eded161671d3d8e5bf4a3f7b04907037f1 (diff) | |
fix a little css mishap with labels
Diffstat (limited to 'static/form.css')
| -rw-r--r-- | static/form.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/static/form.css b/static/form.css index 4505747..e293b59 100644 --- a/static/form.css +++ b/static/form.css @@ -12,14 +12,18 @@ form:not(.nopanel) { label:has(+ input, + textarea, + select), label.standalone, .hint { - display: flex; - gap: var(--spacing-half); + display: block; font-size: var(--font-small-size); color: var(--clr-lesser-foreground); a { color: inherit; } } + .hint { + display: flex; + gap: var(--spacing-half); + } + input:not([type="checkbox"]), textarea, select { |
