Skip to content

Commit

Permalink
fix: #38
Browse files Browse the repository at this point in the history
  • Loading branch information
onmax committed Aug 31, 2024
1 parent d7838ca commit e78c6bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .vitepress/theme/components/header/Navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const currentTrigger = ref('')
<NavigationMenu.Link as-child>
<a
relative of-hidden transition-colors flex="~ col justify-end" rounded-6 h-full w-full p-16
:class="`focusable ${main.classes}`" :href="withBase(main.href)"
:class="`focusable ${main.classes}`" :href="withBase(main.href)" target="_blank"
>
<div :class="main.iconClasses" text-128 absolute top-8 right--24 />
<span nq-label text="12 white/70" z-1>{{ main.label }}</span>
Expand All @@ -43,7 +43,7 @@ const currentTrigger = ref('')
<NavigationMenu.Link as-child>
<a
flex="~ col gap-3" select-none rounded-6 px-8 py-10 class="focusable" transition-colors
:href="withBase(href)" hocus:bg-neutral-200 group
:href="withBase(href)" hocus:bg-neutral-200 group target="_blank"
>
<h4 nq-labeltext="11 neutral" pl-2 font-bold class="nq-arrow" after:op-60>{{ title }}</h4>
<p text="14 neutral-800" lh-18> {{ description }}</p>
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
"dom"
],
"baseUrl": ".",
"module": "esnext",
"moduleResolution": "node",
"module": "NodeNext",
"paths": {
"~/*": [
"./src/*"
Expand Down

0 comments on commit e78c6bf

Please sign in to comment.