From 8081d1225450ed2c7367effe6b964f286f25c5d8 Mon Sep 17 00:00:00 2001 From: OFF0 Date: Sun, 4 Dec 2022 16:34:12 +0100 Subject: [PATCH] post: disable input field resizing Textarea can be resized manually, but this does play well with the automatic resizing (yet), disabling for now. --- src/form.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/form.css b/src/form.css index ba414aa..c7e26ba 100644 --- a/src/form.css +++ b/src/form.css @@ -46,6 +46,7 @@ textarea:focus { textarea { max-height: 50vh; min-height: 20px; + resize: none; transition: min-height .1s ease-out, height .1s ease-out; } textarea:focus {