fix(css): font-sans already applied on <html>

This commit is contained in:
Benjamin Canac
2024-10-10 17:13:46 +02:00
parent a2bad2eee2
commit 9e03da41b3
2 changed files with 2 additions and 2 deletions

View File

@@ -308,7 +308,7 @@ Nuxt UI automatically applies a text and background color on the `<body>` elemen
```css
body {
@apply antialiased font-sans text-[--ui-text] bg-[--ui-bg];
@apply antialiased text-[--ui-text] bg-[--ui-bg];
}
```
::

View File

@@ -6,7 +6,7 @@
@layer base {
body {
@apply antialiased font-sans text-[--ui-text] bg-[--ui-bg];
@apply antialiased text-[--ui-text] bg-[--ui-bg];
}
:root {