diff --git a/docs/src/.vitepress/config.mts b/docs/src/.vitepress/config.mts index d8a6e41d..333f2ab0 100644 --- a/docs/src/.vitepress/config.mts +++ b/docs/src/.vitepress/config.mts @@ -106,6 +106,7 @@ export default defineConfigWithTheme({ }), Icons({ compiler: 'vue3', + defaultClass: 'inline-block align-middle' }), ], }, diff --git a/docs/src/.vitepress/windi.config.ts b/docs/src/.vitepress/windi.config.ts index a4325071..2e050334 100644 --- a/docs/src/.vitepress/windi.config.ts +++ b/docs/src/.vitepress/windi.config.ts @@ -21,10 +21,6 @@ export default defineConfig({ scrollbar, ], - shortcuts: { - 'primary-gradient': 'bg-gradient-to-b from-accent-500 via-accent-700 to-accent-900', - }, - theme: { extend: { colors: { diff --git a/docs/src/guide/getting-started.md b/docs/src/guide/getting-started.md index b7b3dc09..82b2e7a5 100644 --- a/docs/src/guide/getting-started.md +++ b/docs/src/guide/getting-started.md @@ -32,32 +32,35 @@ and [edges](/typedocs/types/Edge) Nodes additionally need a specific position, while edges require a source and a target, both represented by node ids. -Below is a basic example: +::: warning Attention! +To ensure Vue Flow's is correctly displayed, make sure you include the necessary styles. + +Refer to the [Theming](/guide/theming) section for additional information. +::: ```vue -