From a3d5ce1de3c7a40f364762a7ec5879ed3b6dea6c Mon Sep 17 00:00:00 2001 From: Matej Cerny Date: Sun, 21 Jan 2024 02:44:35 +0100 Subject: [PATCH] docs: add info about global css styles --- docs/content/1.getting-started/3.theming.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/content/1.getting-started/3.theming.md b/docs/content/1.getting-started/3.theming.md index a77e0dc62c..e75b417f77 100644 --- a/docs/content/1.getting-started/3.theming.md +++ b/docs/content/1.getting-started/3.theming.md @@ -438,3 +438,16 @@ export default defineAppConfig({ } }) ``` + +## Global CSS styles + +By default, the module injects some global CSS styles, which are not specific to any component. +You can disable these styles in your `nuxt.config.ts`. + +```ts [nuxt.config.ts] +export default defineNuxtConfig({ + ui: { + disableGlobalStyles: false + } +}) +```