fix: contrast on View Trace button (#35505)

This commit is contained in:
Simon Knott 2025-04-07 11:30:04 +02:00 committed by GitHub
parent aec54fa573
commit a2ddb2a3ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ function traceBadge(test: TestCaseSummary): JSX.Element | undefined {
title={isFailed ? 'View Failing Trace' : 'View Trace'}
className={clsx('test-file-badge', isFailed && 'button')}>
{trace()}
{isFailed && <span style={{ color: 'var(--color-scale-gray-7)' }}>View Failing Trace</span>}
{isFailed && <span style={{ color: 'var(--color-fg-subtle)' }}>View Failing Trace</span>}
</Link>;
}