diff options
Diffstat (limited to 'static')
| -rw-r--r-- | static/form.css | 8 | ||||
| -rw-r--r-- | static/profile.css | 1 |
2 files changed, 9 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%; diff --git a/static/profile.css b/static/profile.css index c2e48ed..a46a9a3 100644 --- a/static/profile.css +++ b/static/profile.css @@ -9,6 +9,7 @@ display: grid; grid-template-columns: max-content 1fr max-content; gap: var(--spacing-double); + line-height: 1.5; > * { overflow: hidden; |
