Finish updating text color and icon color for thumbnail-navigation
This commit is contained in:
parent
35475592a3
commit
c5a3a28c5d
|
@ -39,7 +39,7 @@ const ThumbNavigationLink: React.FC<IThumbNavigationLink> = ({ count, countMax,
|
||||||
className={clsx({
|
className={clsx({
|
||||||
'size-5': true,
|
'size-5': true,
|
||||||
'text-black dark:text-white black:text-white': active,
|
'text-black dark:text-white black:text-white': active,
|
||||||
'text-primary-500': !active,
|
'text-gray-600': !active,
|
||||||
})}
|
})}
|
||||||
count={count}
|
count={count}
|
||||||
countMax={countMax}
|
countMax={countMax}
|
||||||
|
@ -49,8 +49,8 @@ const ThumbNavigationLink: React.FC<IThumbNavigationLink> = ({ count, countMax,
|
||||||
src={icon}
|
src={icon}
|
||||||
className={clsx({
|
className={clsx({
|
||||||
'size-5': true,
|
'size-5': true,
|
||||||
'text-black dark:text-white black:text-white': active,
|
'text-black black:text-white dark:text-white': active,
|
||||||
'text-primary-500': !active,
|
'text-gray-600 black:text-gray-500 dark:text-gray-500': !active,
|
||||||
})}
|
})}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
@ -60,9 +60,9 @@ const ThumbNavigationLink: React.FC<IThumbNavigationLink> = ({ count, countMax,
|
||||||
size='xs'
|
size='xs'
|
||||||
weight='medium'
|
weight='medium'
|
||||||
className={clsx({
|
className={clsx({
|
||||||
'text-greed-600': active,
|
'text-gray-600 black:text-white dark:text-white': active,
|
||||||
'text-primary-500': !active,
|
'!text-gray-600 black:!text-gray-500 dark:!text-gray-500': !active,
|
||||||
})}
|
})}text-primary-500
|
||||||
>
|
>
|
||||||
{text}
|
{text}
|
||||||
</Text>
|
</Text>
|
||||||
|
|
Loading…
Reference in New Issue