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 a2270b3 commit afc64e8Copy full SHA for afc64e8
src/components/navbar/navbar.tsx
@@ -49,7 +49,7 @@ function NavbarMenu({
49
key={key}
50
href={item.href || routes[key]?.route}
51
target={item.newWindow ? "_blank" : undefined}
52
- className="block py-3.5 pl-2 pr-9"
+ className="block py-3.5 pl-2 pr-9 underline-offset-2 hover:underline focus-visible:underline"
53
closeOnClick
54
render={(
55
props: React.ComponentPropsWithoutRef<"a">,
@@ -58,7 +58,7 @@ function NavbarMenu({
58
<Anchor {...props} href={props.href!}>
59
<span
60
className={clsx(
61
- "typography-menu px-3 py-1 underline-offset-2 hover:underline focus-visible:underline",
+ "typography-menu px-3 py-1",
62
state.active && "underline",
63
)}
64
>
0 commit comments