diff options
| author | Marshall Lochbaum <mwlochbaum@gmail.com> | 2020-08-20 20:32:55 -0400 |
|---|---|---|
| committer | Marshall Lochbaum <mwlochbaum@gmail.com> | 2020-08-20 20:32:55 -0400 |
| commit | 6574151b0db55513b2addce195805ea8f16d498c (patch) | |
| tree | 93b600f08ec047d4c0956c6f2d1d1d6462c31bd4 | |
| parent | 4fe05e88351135d5831018885e672476e2f2240e (diff) | |
Only allow vertical resizing for textareas
| -rw-r--r-- | docs/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/style.css b/docs/style.css index 4321426b..8e84beff 100644 --- a/docs/style.css +++ b/docs/style.css @@ -53,7 +53,7 @@ pre, textarea, .kb { } pre { margin: 1.6em 0.4em; } pre, textarea { padding: 0.8em; } -textarea { width:100%; outline:none; } +textarea { width:100%; outline:none; resize:vertical; } .cont { margin:1.3em 0; } .rslt { background:none; border-top:none; margin:0; } .rslt.err { color:#d11; } |
