diff --git a/src/components/icon-with-counter.tsx b/src/components/icon-with-counter.tsx index 072e2166f..4a7cac64d 100644 --- a/src/components/icon-with-counter.tsx +++ b/src/components/icon-with-counter.tsx @@ -1,5 +1,6 @@ -import Icon, { IIcon } from 'soapbox/components/icon.tsx'; +import { IIcon } from 'soapbox/components/icon.tsx'; import Counter from 'soapbox/components/ui/counter.tsx'; +import Icon from 'soapbox/components/ui/icon.tsx'; interface IIconWithCounter extends React.HTMLAttributes { count: number; diff --git a/src/components/sidebar-navigation-link.tsx b/src/components/sidebar-navigation-link.tsx index 0dbb47c53..8d1b26ca2 100644 --- a/src/components/sidebar-navigation-link.tsx +++ b/src/components/sidebar-navigation-link.tsx @@ -55,7 +55,7 @@ const SidebarNavigationLink = forwardRef((props: ISidebarNavigationLink, ref: Re count={count} countMax={countMax} className={clsx('size-5', { - 'text-gray-600 black:text-white dark:text-gray-500 group-hover:text-gray-900 dark:group-hover:text-gray-50': !isActive, + 'text-gray-600 black:text-gray-500 dark:text-gray-500 group-hover:text-gray-900 dark:group-hover:text-gray-50': !isActive, 'text-gray-900 dark:text-gray-50': isActive, })} /> diff --git a/src/components/thumb-navigation-link.tsx b/src/components/thumb-navigation-link.tsx index 5e4d2a406..dafb8bdfa 100644 --- a/src/components/thumb-navigation-link.tsx +++ b/src/components/thumb-navigation-link.tsx @@ -37,9 +37,9 @@ const ThumbNavigationLink: React.FC = ({ count, countMax, = ({ count, countMax, )} @@ -60,9 +60,9 @@ const ThumbNavigationLink: React.FC = ({ count, countMax, size='xs' weight='medium' className={clsx({ - 'text-gray-600': !active, - 'text-primary-500': active, - })} + 'text-gray-600 black:text-white dark:text-white': active, + '!text-gray-600 black:!text-gray-500 dark:!text-gray-500': !active, + })}text-primary-500 > {text}