Skip to content

Commit

Permalink
docs: add info about global css styles
Browse files Browse the repository at this point in the history
  • Loading branch information
CernyMatej committed Jan 21, 2024
1 parent c4e89cd commit a3d5ce1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/content/1.getting-started/3.theming.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
})
```

0 comments on commit a3d5ce1

Please sign in to comment.