38 lines
532 B
Vue
38 lines
532 B
Vue
<script setup>
|
|
import DefaultTheme from 'vitepress/theme'
|
|
|
|
const { Layout } = DefaultTheme
|
|
</script>
|
|
|
|
<template>
|
|
<Layout>
|
|
</Layout>
|
|
</template>
|
|
|
|
<style>
|
|
:root {
|
|
--vp-sidebar-width: 250px;
|
|
}
|
|
|
|
.VPNavBarTitle .title {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.language-template:has(~.preview){
|
|
flex-grow:1000;
|
|
}
|
|
|
|
.preview,
|
|
.vp-doc .preview {
|
|
padding: 16px 0;
|
|
flex-grow: 1;
|
|
|
|
/* .preview overrides the cascade coming from .vp-docs and other containers
|
|
that may leak rules here */
|
|
p {
|
|
margin: 0;
|
|
line-height: normal
|
|
}
|
|
}
|
|
</style>
|