We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f39c782 commit 01d05d9Copy full SHA for 01d05d9
2 files changed
apps/webapp/app/components/primitives/ClientTabs.tsx
@@ -107,7 +107,9 @@ const ClientTabsTrigger = React.forwardRef<
107
<span
108
className={cn(
109
"text-sm transition duration-200",
110
- isActive ? "text-text-bright" : "text-text-dimmed transition hover:text-text-bright"
+ isActive
111
+ ? "text-text-bright"
112
+ : "text-text-dimmed transition group-hover:text-text-bright"
113
)}
114
>
115
{children}
apps/webapp/app/components/primitives/Tabs.tsx
@@ -85,7 +85,7 @@ export function TabLink({
85
86
active
87
? "text-text-bright"
88
- : "text-text-dimmed transition hover:text-text-bright"
89
90
91
0 commit comments