Skip to content

Commit 6a6443e

Browse files
authored
Fix: ChatTextArea's height moving unexcepted when Roo Code width change (#2969)
Fix: ChatTextArea's height moving unexcepted when Roo Code width change.
1 parent a356d70 commit 6a6443e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

webview-ui/src/components/chat/ChatTextArea.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -880,9 +880,7 @@ const ChatTextArea = forwardRef<HTMLTextAreaElement, ChatTextAreaProps>(
880880
: "bg-vscode-input-background",
881881
"transition-background-color duration-150 ease-in-out",
882882
"will-change-background-color",
883-
"h-[100px]",
884-
"[@media(min-width:150px)]:min-h-[80px]",
885-
"[@media(min-width:425px)]:min-h-[60px]",
883+
"min-h-[90px]",
886884
"box-border",
887885
"rounded",
888886
"resize-none",

0 commit comments

Comments
 (0)