docs: new Documentation

This commit is contained in:
Emerson Bottero
2022-10-15 00:50:11 -03:00
parent 57b883c7dd
commit cbcf7f8a11
243 changed files with 2593 additions and 25934 deletions

View File

@@ -0,0 +1,13 @@
@media (min-width: 1440px) {
.VPDoc:not(.has-sidebar) .container[data-v-10119189] {
max-width: 100%;
}
.VPDoc.has-aside .content-container[data-v-10119189] {
max-width: 100%;
}
}
:root {
--vp-layout-max-width: 100%;
}

View File

@@ -0,0 +1,11 @@
import DefaultTheme from 'vitepress/theme';
import Mermaid from 'vitepress-plugin-mermaid/Mermaid.vue';
import './custom.css';
export default {
...DefaultTheme,
enhanceApp({ app }) {
// register global components
app.component('Mermaid', Mermaid);
},
};