mirror of https://github.com/langgenius/dify.git
fix(web): correct title color in option card in dark mode (#24579)
This commit is contained in:
parent
f24f573731
commit
1814b99c79
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in New Issue