File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,13 @@ import { MdChevronRight } from "react-icons/md"
5
5
6
6
import { ChildOnlyProp } from "@/lib/types"
7
7
import { DeveloperDocsLink } from "@/lib/interfaces"
8
- import { BaseLink , LinkProps } from "./ui/Link"
9
- import { HStack } from "./ui/flex "
8
+
9
+ import { BaseLink , LinkProps } from "@/components/Link "
10
10
11
11
import docLinks from "../data/developer-docs-links.yaml"
12
12
13
+ import { HStack } from "./ui/flex"
14
+
13
15
export const dropdownIconContainerVariant = {
14
16
open : {
15
17
rotate : 90 ,
@@ -42,7 +44,12 @@ const LinkContainer = ({ children }: ChildOnlyProp) => {
42
44
const SideNavLink = ( { children, ...props } : LinkProps ) => {
43
45
return (
44
46
< BaseLink
45
- className = "w-full font-normal text-body no-underline hover:text-primary"
47
+ w = "full"
48
+ textDecoration = "none"
49
+ color = "text"
50
+ fontWeight = "normal"
51
+ _hover = { { textDecoration : "none" , color : "primary.base" } }
52
+ _active = { { color : "primary.base" } }
46
53
{ ...props }
47
54
>
48
55
{ children }
You can’t perform that action at this time.
0 commit comments