From a2413536c9a3c87933151f5210f1975296deda41 Mon Sep 17 00:00:00 2001 From: Dave Onkels Date: Wed, 28 Jan 2026 20:05:12 -0800 Subject: [PATCH] feat(ui): expand chat textarea max-height for longer messages Increase max-height from 150px to min(400px, 50vh) so users can see more of their message while typing instead of scrolling in a tiny box. Co-Authored-By: Claude Opus 4.5 --- ui/src/styles/chat/layout.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/styles/chat/layout.css b/ui/src/styles/chat/layout.css index 589b0b62d..cdd7407aa 100644 --- a/ui/src/styles/chat/layout.css +++ b/ui/src/styles/chat/layout.css @@ -247,7 +247,7 @@ width: 100%; height: 40px; min-height: 40px; - max-height: 150px; + max-height: min(400px, 50vh); padding: 9px 12px; border-radius: 8px; overflow-y: auto;