mirror of https://github.com/vuejs/vitepress
parent
f9ddbc1682
commit
a7e1b7a155
@ -1,35 +1,46 @@
|
|||||||
<template>
|
<template>
|
||||||
<a
|
<div class="nav-item">
|
||||||
class="nav-link"
|
<a
|
||||||
:class="classes"
|
class="nav-link"
|
||||||
:href="href"
|
:class="classes"
|
||||||
:target="target"
|
:href="href"
|
||||||
:rel="rel"
|
:target="target"
|
||||||
:aria-label="item.ariaLabel"
|
:rel="rel"
|
||||||
>
|
:aria-label="item.ariaLabel"
|
||||||
{{ item.text }}
|
>
|
||||||
<OutboundLink v-if="isExternalLink" />
|
{{ item.text }}
|
||||||
</a>
|
<OutboundLink v-if="isExternalLink" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script src="./NavBarLink"></script>
|
<script src="./NavBarLink"></script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.nav-link {
|
.nav-item {
|
||||||
color: var(--text-color);
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
margin-left: 1.5rem;
|
margin-left: 1.5rem;
|
||||||
font-weight: 600;
|
line-height: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-link {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: 1.75rem;
|
margin-bottom: -2px;
|
||||||
line-height: 1.75rem;
|
border-bottom: 2px solid transparent;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 1.4rem;
|
||||||
|
color: var(--text-color);
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-link:hover,
|
.nav-link:hover,
|
||||||
.nav-link.active {
|
.nav-link.active {
|
||||||
border-bottom: 2px solid var(--accent-color);
|
border-bottom-color: var(--accent-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-link.external:hover {
|
.nav-link.external:hover {
|
||||||
border-bottom: 0;
|
border-bottom-color: transparent;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in new issue