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:
klopez4212
2026-07-07 07:51:58 +01:00
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 || " "}
/>
)}