funkwhale/front/ui-docs/.vitepress/theme/Layout.vue

34 lines
476 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;
}
.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>