File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,10 @@ import { MdChevronRight } from "react-icons/md"
6
6
import type { ChildOnlyProp , TranslationKey } from "@/lib/types"
7
7
import { DeveloperDocsLink } from "@/lib/interfaces"
8
8
9
- import { BaseLink , LinkProps } from "@/components/Link"
10
-
11
9
import docLinks from "@/data/developer-docs-links.yaml"
12
10
13
11
import { Center , HStack } from "./ui/flex"
12
+ import { BaseLink , LinkProps } from "./ui/Link"
14
13
import {
15
14
dropdownIconContainerVariant ,
16
15
type NavLinkProps as SideNavLinkProps ,
@@ -57,16 +56,7 @@ const LinkContainer = ({ children }: ChildOnlyProp) => {
57
56
const SideNavLink = ( { children, ...props } : LinkProps ) => {
58
57
return (
59
58
< BaseLink
60
- w = "full"
61
- textDecoration = "none"
62
- color = "text"
63
- _hover = { {
64
- textDecoration : "none" ,
65
- color : "primary.base" ,
66
- } }
67
- _active = { {
68
- color : "primary.base" ,
69
- } }
59
+ className = "w-full text-body no-underline hover:text-primary"
70
60
{ ...props }
71
61
>
72
62
{ children }
You can’t perform that action at this time.
0 commit comments