feat:样式美化

This commit is contained in:
2026-06-14 10:18:36 +08:00
parent 5aa383cab9
commit 70dfa1c8f8
4 changed files with 302 additions and 153 deletions

View File

@@ -44,13 +44,17 @@ export function ChatPanel({ messages, currentReply, connectionStatus }: ChatPane
if (connectionStatus !== "connected") {
return (
<div className="chat-panel chat-panel--empty">
<span className="chat-panel--empty-icon">💬</span>
<p></p>
<span className="chat-panel--empty-hint"> AI </span>
</div>
);
}
return (
<div className="chat-panel chat-panel--empty">
<span className="chat-panel--empty-icon">🎙</span>
<p></p>
<span className="chat-panel--empty-hint">AI </span>
</div>
);
}