diff options
Diffstat (limited to 'static/form.css')
| -rw-r--r-- | static/form.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/static/form.css b/static/form.css index e293b59..7b38860 100644 --- a/static/form.css +++ b/static/form.css @@ -9,6 +9,13 @@ form:not(.nopanel) { gap: var(--spacing-single); max-width: max-content; + .row:has(> .column) { + display: grid; + grid-auto-flow: column; + grid-auto-columns: 1fr; + gap: var(--spacing-single); + } + label:has(+ input, + textarea, + select), label.standalone, .hint { @@ -41,6 +48,7 @@ form:not(.nopanel) { } textarea { resize: vertical; + height: 5lh; } button:not(.inline) { width: 100%; |
