Skip to content

Commit

Permalink
Adds styling for user chat bubbles when in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
DanPGill committed May 30, 2024
1 parent 5c8afa5 commit 3cd5532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/www/src/components/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const ChatMessage: React.FC<{
<div
className={cn(
"space-y-2 overflow-x-hidden",
role === "user" && "bg-black rounded-lg px-4 py-1",
role === "user" && "dark:bg-black rounded-lg px-4 py-1 bg-white",
)}
>
<MessageComponent
Expand Down

0 comments on commit 3cd5532

Please sign in to comment.