make tool name fonts consistent (#712)

This commit is contained in:
Gabriel Gordon-Hall
2025-09-15 11:34:18 +01:00
committed by GitHub
parent ae59813929
commit 4f2a1f7273
2 changed files with 2 additions and 2 deletions

View File

@@ -93,7 +93,7 @@ function EditDiffRenderer({
<SquarePen className="h-3 w-3" />
<p
onClick={() => setExpanded()}
className="text-xs font-mono overflow-x-auto flex-1 cursor-pointer"
className="text-sm font-mono overflow-x-auto flex-1 cursor-pointer"
>
{path}{' '}
<span style={{ color: 'hsl(var(--console-success))' }}>

View File

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