diff options
author | stuebinm | 2021-04-07 23:44:39 +0200 |
---|---|---|
committer | stuebinm | 2021-04-07 23:44:39 +0200 |
commit | 0050cd0df5f38b9b2b8d8569822dbe1231d77adb (patch) | |
tree | ec8603037400c48a9a1f81aca8fb068231afb035 | |
parent | 1e496d82713fed1ccb0da8b5d0e04fbece7ebe67 (diff) |
site: sensible sizes for textareas
Diffstat (limited to '')
-rw-r--r-- | site/style.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/site/style.css b/site/style.css index 026c1cc..e16c0cc 100644 --- a/site/style.css +++ b/site/style.css @@ -19,3 +19,10 @@ body { li { list-style-type: none; } + +textarea { + width: 100%; + height: 6em; + resize: vertical; + min-height: 2em; +} |