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:
parent
699784dbee
commit
a2413536c9
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user