From e7c564112c87ed16e68ce766646b259f80eeea19 Mon Sep 17 00:00:00 2001 From: thzxx Date: Sat, 27 Jun 2026 22:48:47 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B6=88=E6=81=AF=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=A1=86=E5=8A=A0=E9=AB=98=E5=8A=A0=E5=A4=A7=20(minH=2036,=20f?= =?UTF-8?q?ontSize=2014)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/chat/ChatInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/chat/ChatInput.tsx b/src/components/chat/ChatInput.tsx index cd56ac1..3cb307b 100644 --- a/src/components/chat/ChatInput.tsx +++ b/src/components/chat/ChatInput.tsx @@ -248,7 +248,7 @@ export function ChatInput(): React.JSX.Element { onPaste={handlePaste} placeholder="输入消息... (Enter 发送, Ctrl+Enter 换行, / 命令)" disabled={isStreaming} rows={1} - style={{ width: '100%', background: 'transparent', border: 'none', outline: 'none', color: 'inherit', fontSize: 13, lineHeight: '24px', resize: 'none', fontFamily: 'inherit', minHeight: 24, maxHeight: 144 }} + style={{ width: '100%', background: 'transparent', border: 'none', outline: 'none', color: 'inherit', fontSize: 14, lineHeight: '28px', resize: 'none', fontFamily: 'inherit', minHeight: 36, maxHeight: 160 }} />