From e8a2dca4366b1dcf93cf2bbaefeb0795ff2f74d2 Mon Sep 17 00:00:00 2001 From: hwnagjokim Date: Tue, 16 Jun 2026 17:35:38 +0900 Subject: [PATCH] fix(team): update chat message presentation --- src/features/team/components/mock-team-space-view.tsx | 8 +++++--- src/features/team/components/real-team-chat-panel.tsx | 10 +++++----- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/features/team/components/mock-team-space-view.tsx b/src/features/team/components/mock-team-space-view.tsx index a092500..79fa468 100644 --- a/src/features/team/components/mock-team-space-view.tsx +++ b/src/features/team/components/mock-team-space-view.tsx @@ -1459,7 +1459,7 @@ function ChatPanel({ messages, onSend }: ChatPanelProps) { className={cn( "max-w-[min(34rem,88%)] rounded-lg border p-4 shadow-crisp", message.author === "나" - ? "border-primary/20 bg-primary text-primary-foreground" + ? "border-blue-600 bg-blue-600 text-white" : "border-border/70 bg-white text-brand-ink", )} > @@ -1469,7 +1469,7 @@ function ChatPanel({ messages, onSend }: ChatPanelProps) { className={cn( "font-mono text-xs", message.author === "나" - ? "text-primary-foreground/75" + ? "text-blue-100" : "text-muted-foreground", )} > @@ -1480,7 +1480,7 @@ function ChatPanel({ messages, onSend }: ChatPanelProps) { className={cn( "mt-2 text-sm leading-6", message.author === "나" - ? "text-primary-foreground/90" + ? "text-blue-50" : "text-muted-foreground", )} > @@ -1491,6 +1491,7 @@ function ChatPanel({ messages, onSend }: ChatPanelProps) { ))}
@@ -1500,6 +1501,7 @@ function ChatPanel({ messages, onSend }: ChatPanelProps) { > 메시지 setDraftMessage(event.target.value)} diff --git a/src/features/team/components/real-team-chat-panel.tsx b/src/features/team/components/real-team-chat-panel.tsx index 21ccfc2..4968371 100644 --- a/src/features/team/components/real-team-chat-panel.tsx +++ b/src/features/team/components/real-team-chat-panel.tsx @@ -126,6 +126,7 @@ export function RealTeamChatPanel({ projectGroup }: RealTeamChatPanelProps) { /> ) : null} @@ -135,6 +136,7 @@ export function RealTeamChatPanel({ projectGroup }: RealTeamChatPanelProps) { > 메시지 @@ -212,7 +214,7 @@ function ChatBubble({ message }: { message: ChatMessage }) { className={cn( "font-mono text-xs", message.mine - ? "text-primary-foreground/75" + ? "text-blue-100" : "text-muted-foreground", )} > @@ -222,9 +224,7 @@ function ChatBubble({ message }: { message: ChatMessage }) {

{message.content}