Skip to content

Commit b8c3b83

Browse files
authored
chore(goose2): full width assistant message (#8760)
Signed-off-by: Taylor Ho <taylorkmho@gmail.com>
1 parent 092a40c commit b8c3b83

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ui/goose2/src/features/chat/ui/MessageBubble.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ export const MessageBubble = memo(function MessageBubble({
391391
<div
392392
className={cn(
393393
"group relative min-w-0 flex flex-col gap-1 pb-8",
394-
isUser ? "max-w-[640px] items-end" : "max-w-[85%] items-start",
394+
isUser ? "max-w-[640px] items-end" : "w-full items-start",
395395
)}
396396
>
397397
{showAssistantIdentity ? (
@@ -423,7 +423,7 @@ export const MessageBubble = memo(function MessageBubble({
423423
{/* biome-ignore lint/a11y/noStaticElementInteractions: delegated link handler */}
424424
<div
425425
className={cn(
426-
"w-full min-w-0 text-[13px] leading-relaxed",
426+
"w-full min-w-0 text-sm leading-relaxed",
427427
isUser && "rounded-2xl bg-muted p-3",
428428
)}
429429
onClick={handleContentClick}

0 commit comments

Comments
 (0)