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 <noreply@anthropic.com>
This commit is contained in:
Dave Onkels 2026-01-28 20:05:12 -08:00
parent 699784dbee
commit a2413536c9

View File

@ -247,7 +247,7 @@
width: 100%; width: 100%;
height: 40px; height: 40px;
min-height: 40px; min-height: 40px;
max-height: 150px; max-height: min(400px, 50vh);
padding: 9px 12px; padding: 9px 12px;
border-radius: 8px; border-radius: 8px;
overflow-y: auto; overflow-y: auto;