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.
vitepress/src/client/theme-default/components/VPNavBarAppearance.vue

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>