We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 092a40c commit b8c3b83Copy full SHA for b8c3b83
1 file changed
ui/goose2/src/features/chat/ui/MessageBubble.tsx
@@ -391,7 +391,7 @@ export const MessageBubble = memo(function MessageBubble({
391
<div
392
className={cn(
393
"group relative min-w-0 flex flex-col gap-1 pb-8",
394
- isUser ? "max-w-[640px] items-end" : "max-w-[85%] items-start",
+ isUser ? "max-w-[640px] items-end" : "w-full items-start",
395
)}
396
>
397
{showAssistantIdentity ? (
@@ -423,7 +423,7 @@ export const MessageBubble = memo(function MessageBubble({
423
{/* biome-ignore lint/a11y/noStaticElementInteractions: delegated link handler */}
424
425
426
- "w-full min-w-0 text-[13px] leading-relaxed",
+ "w-full min-w-0 text-sm leading-relaxed",
427
isUser && "rounded-2xl bg-muted p-3",
428
429
onClick={handleContentClick}
0 commit comments