We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0145530 commit 0084925Copy full SHA for 0084925
src/components/SupportAI.tsx
@@ -12,7 +12,7 @@ function Messages({ messages }: { messages: Messages }) {
12
.map((message, index) => (
13
<div
14
key={index}
15
- className={`w-fit max-w-3/4 rounded p-2 ${message.role === "user" ? "self-end bg-(--sl-color-bg-nav) text-black" : "bg-cl1-brand-orange text-cl1-black self-start"}`}
+ className={`w-fit max-w-3/4 rounded p-4 ${message.role === "user" ? "bg-cl1-brand-orange text-cl1-black self-end" : "self-start bg-(--sl-color-bg-nav)"}`}
16
>
17
<Markdown>{message.content}</Markdown>
18
</div>
0 commit comments