16 lines
235 B
Vue
16 lines
235 B
Vue
|
<script setup>
|
||
|
import DefaultTheme from "vitepress/theme";
|
||
|
const { Layout } = DefaultTheme;
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<Layout></Layout>
|
||
|
</template>
|
||
|
|
||
|
<style>
|
||
|
main > .container {
|
||
|
/* love that */
|
||
|
max-width: 54rem !important;
|
||
|
}
|
||
|
</style>
|