From a9778adb6583c7009ccb8bebc4731f06b98c2098 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Wed, 14 Jan 2026 20:24:05 -0300 Subject: [PATCH] fix: Adjust user description textarea height Changes height from calc(100vh - 231px) to calc(100vh - 334px) to properly fit the UI with the new user menu controls. --- css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/main.css b/css/main.css index ecf8568f..c55a29dc 100644 --- a/css/main.css +++ b/css/main.css @@ -1645,7 +1645,7 @@ button:focus { } #user-description textarea { - height: calc(100vh - 231px) !important; + height: calc(100vh - 334px) !important; min-height: 90px !important; }