Skip to content

Commit

Permalink
Adds styling for user chat bubbles when in light mode (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanPGill authored May 30, 2024
1 parent 2ff5191 commit f49a4d0
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" && "bg-background rounded-lg px-4 py-1",
)}
>
<MessageComponent
Expand Down

0 comments on commit f49a4d0

Please sign in to comment.