You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `theme(static)` is required since [`tailwindcss@4.0.8`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v4.0.8) introduced a breaking change to only expose used CSS variables.
77
-
::
78
-
79
75
::callout{icon="i-simple-icons-visualstudiocode"}
80
76
It's recommended to install the [Tailwind CSS IntelliSense](https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss) extension for VSCode and add the following settings:
Copy file name to clipboardexpand all lines: docs/content/1.getting-started/2.installation/2.vue.md
+1-5
Original file line number
Diff line number
Diff line change
@@ -102,14 +102,10 @@ app.mount('#app')
102
102
#### Import Tailwind CSS and Nuxt UI in your CSS
103
103
104
104
```css [assets/main.css]
105
-
@import"tailwindcss" theme(static);
105
+
@import"tailwindcss";
106
106
@import"@nuxt/ui";
107
107
```
108
108
109
-
::warning
110
-
The `theme(static)` is required since [`tailwindcss@4.0.8`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v4.0.8) introduced a breaking change to only expose used CSS variables.
0 commit comments