fix(web): correct title color in option card in dark mode (#24579)

This commit is contained in:
kurokobo 2025-08-27 12:27:25 +09:00 committed by GitHub
parent f24f573731
commit 1814b99c79
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ const OptionCard = ({
<DatasourceIcon iconUrl={iconUrl} />
</div>
<div
className={cn('system-sm-medium line-clamp-2 grow text-text-secondary', selected && 'text-primary')}
className={cn('system-sm-medium line-clamp-2 grow text-text-secondary', selected && 'text-text-primary')}
title={label}
>
{label}

View File

@ -43,7 +43,7 @@ const OptionCard = ({
/>
</div>
<div
className={cn('system-sm-medium line-clamp-2 grow text-text-secondary', selected && 'text-primary')}
className={cn('system-sm-medium line-clamp-2 grow text-text-secondary', selected && 'text-text-primary')}
title={label}
>
{label}