normalize tool display; remove backticks (#1482)

This commit is contained in:
Gabriel Gordon-Hall
2025-12-09 15:50:17 +00:00
committed by GitHub
parent d0392e6d5e
commit 84d80659b3
9 changed files with 42 additions and 44 deletions

View File

@@ -215,7 +215,7 @@ export default function DiffCard({
// Title row
const title = (
<p
className="text-xs font-mono overflow-x-auto flex-1"
className="text-sm font-mono overflow-x-auto flex-1"
style={{ color: 'hsl(var(--muted-foreground) / 0.7)' }}
>
<Icon className="h-3 w-3 inline mr-2" aria-hidden />

View File

@@ -516,9 +516,9 @@ const ToolCallCard: React.FC<{
{entryType && getEntryIcon(entryType)}
</span>
{showInlineSummary ? (
<span className="font-light">{inlineText}</span>
<span className="text-sm font-mono">{inlineText}</span>
) : (
<span className="font-normal">{label}</span>
<span className="text-sm font-mono">{label}</span>
)}
</span>
</HeaderWrapper>

View File

@@ -136,7 +136,7 @@ const FileChangeRenderer = ({
{icon}
<p
onClick={() => expandable && setExpanded()}
className="text-sm font-light overflow-x-auto flex-1 cursor-pointer"
className="text-sm font-mono overflow-x-auto flex-1 cursor-pointer"
>
{titleNode}
</p>