File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
apps/website/src/components/navigation-docs Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { useLocation } from '@builder.io/qwik-city';
3
3
import { ComponentStatus } from '~/_state/component-status.type' ;
4
4
import { StatusBadge } from '../component-status-badge/component-status-badge' ;
5
5
import { cn } from '@qwik-ui/utils' ;
6
+ import { buttonVariants } from '@qwik-ui/styled' ;
6
7
7
8
export interface LinkGroup {
8
9
name : string ;
@@ -57,7 +58,8 @@ export const DocsNavigation = component$(
57
58
< li key = { link . name + link . href } >
58
59
< a
59
60
class = { cn (
60
- 'transition-color flex items-center rounded-base px-4 py-2 text-sm duration-300 ease-step hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground' ,
61
+ buttonVariants ( { look : 'ghost' } ) ,
62
+ 'flex h-10 items-center rounded-base font-sans' ,
61
63
isLinkActive ||
62
64
( location . url . pathname ?. startsWith ( '/docs/headless/' ) &&
63
65
link . name === 'Headless' ) ||
You can’t perform that action at this time.
0 commit comments