diff --git a/docs/content/1.getting-started/3.theme.md b/docs/content/1.getting-started/3.theme.md index a63bbee5..a2f9d0ca 100644 --- a/docs/content/1.getting-started/3.theme.md +++ b/docs/content/1.getting-started/3.theme.md @@ -308,7 +308,7 @@ Nuxt UI automatically applies a text and background color on the `` elemen ```css body { - @apply antialiased font-sans text-[--ui-text] bg-[--ui-bg]; + @apply antialiased text-[--ui-text] bg-[--ui-bg]; } ``` :: diff --git a/src/runtime/index.css b/src/runtime/index.css index d0d54fd7..9ed8b3a2 100644 --- a/src/runtime/index.css +++ b/src/runtime/index.css @@ -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 {