From 6ee5f2edd5a668cac7599fd4da0a975caeabcde8 Mon Sep 17 00:00:00 2001 From: biast12 Date: Mon, 10 Feb 2025 06:39:54 +0100 Subject: [PATCH] Disable horizontal resizing for textareas --- frontend/public/global.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/public/global.css b/frontend/public/global.css index a92f033..1003b25 100644 --- a/frontend/public/global.css +++ b/frontend/public/global.css @@ -37,6 +37,10 @@ label { display: block; } +textarea { + resize: vertical; +} + input, button, select, textarea { font-family: inherit; font-size: inherit;