mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
358 B
23 lines
358 B
<script lang="ts" setup>
|
|
import VPSwitchAppearance from './VPSwitchAppearance.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="VPNavBarAppearance">
|
|
<VPSwitchAppearance />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPNavBarAppearance {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 1280px) {
|
|
.VPNavBarAppearance {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
</style>
|