mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
Match transcript message weight to conversation text
The agent's in-transcript messages (the self-talk that renders between markers) and mid-turn user prompts step up to font-medium, matching the persisted conversation rows. Marker rows and their expanded details keep their lighter treatment. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5
parent
5cf7a86e5e
commit
21faa17229
@@ -488,7 +488,7 @@ function ChatTranscriptMessageRow({
|
||||
{isUser ? (
|
||||
<Bubble side="right">
|
||||
<Markdown
|
||||
className="min-w-0 [&_*]:text-primary-foreground [&_a]:text-primary-foreground [&_code]:bg-primary-foreground/15 [&_code]:text-primary-foreground"
|
||||
className="min-w-0 font-medium [&_*]:text-primary-foreground [&_a]:text-primary-foreground [&_code]:bg-primary-foreground/15 [&_code]:text-primary-foreground"
|
||||
compact
|
||||
content={displayText || text || " "}
|
||||
/>
|
||||
@@ -496,7 +496,7 @@ function ChatTranscriptMessageRow({
|
||||
) : (
|
||||
<Markdown
|
||||
agentAuthored
|
||||
className="w-full max-w-none text-sm leading-6"
|
||||
className="w-full max-w-none text-sm font-medium leading-6"
|
||||
content={displayText || text || " "}
|
||||
/>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user