We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bc1092 commit f0a0eb1Copy full SHA for f0a0eb1
1 file changed
chat/src/components/MessageList.tsx
@@ -54,15 +54,15 @@ export default function MessageList({ messages }: MessageListProps) {
54
<div
55
className={`inline-block px-4 py-2 rounded-lg ${
56
message.role === "user"
57
- ? "bg-blue-500 text-white rounded-tr-none max-w-[80%]"
+ ? "bg-blue-500 text-white rounded-tr-none max-w-[90%]"
58
: "bg-gray-200 text-gray-800 rounded-tl-none max-w-[90%] min-w-[640px]"
59
}`}
60
>
61
- <div className="text-xs mb-1 font-bold">
+ <div className="text-xs mb-1 font-bold text-left">
62
{message.role === "user" ? "You" : "AgentAPI"}
63
</div>
64
65
- className={`whitespace-pre-wrap break-words ${
+ className={`whitespace-pre-wrap break-words text-left ${
66
message.role === "user" ? "" : "font-mono"
67
68
0 commit comments