diff --git a/web/app/components/explore/sidebar/app-nav-item/index.tsx b/web/app/components/explore/sidebar/app-nav-item/index.tsx index 42a2d35ba8..703908589c 100644 --- a/web/app/components/explore/sidebar/app-nav-item/index.tsx +++ b/web/app/components/explore/sidebar/app-nav-item/index.tsx @@ -53,10 +53,10 @@ export default function AppNavItem({ title={isMainNav ? name : undefined} className={cn( isMainNav - ? 'group text-components-main-nav-text flex cursor-pointer items-center justify-between gap-2 rounded-lg py-0.5 pr-0.5 pl-2 transition-colors' + ? 'group flex h-8 cursor-pointer items-center justify-between gap-2 rounded-lg py-0.5 pr-0.5 pl-2 transition-colors' : 'flex h-8 items-center justify-between rounded-lg px-2 system-sm-medium text-sm font-normal text-components-menu-item-text mobile:justify-center mobile:px-1', isMainNav - ? (isSelected ? 'text-components-main-nav-text bg-state-base-hover' : 'hover:text-components-main-nav-text hover:bg-state-base-hover') + ? (isSelected ? 'bg-state-base-hover' : 'hover:bg-state-base-hover') : (isSelected ? 'bg-state-base-active text-components-menu-item-text-active' : 'hover:bg-state-base-hover hover:text-components-menu-item-text-hover'), )} onClick={() => { @@ -68,7 +68,7 @@ export default function AppNavItem({ <>