updated content

CSS grid
CSS custom fonts
CSS variables
This commit is contained in:
nico 2023-12-08 11:07:59 +01:00
parent 4888d7e765
commit 4fc0dd20f8
59 changed files with 3409 additions and 2463 deletions

15
docs/.vitepress/theme/index.js Normal file → Executable file
View file

@ -1,21 +1,6 @@
import DefaultTheme from "vitepress/theme";
import PageLayout from "./layouts/PageLayout.vue";
import "./custom.css";
const modules = import.meta.globEager("./components/**/*.vue");
const components = [];
for (const path in modules) {
components.push(modules[path].default);
}
export default {
...DefaultTheme,
// Layout: PageLayout,
enhanceApp({ app }) {
// import all components globally
components.forEach(comp => {
app.component(comp.name, comp);
});
}
};