We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ff7ab5 commit ce63bbfCopy full SHA for ce63bbf
docs/tailwindcss.mdx
@@ -87,9 +87,9 @@ module.exports = {
87
在你的项目入口文件里引入 `tailwindcss`,比如 `taro app` 的 `app.scss`
88
89
```scss title="app.scss"
90
-@import 'tailwindcss/base';
91
-@import 'tailwindcss/components';
92
-@import 'tailwindcss/utilities';
+@use 'tailwindcss/base' as *;
+@use 'tailwindcss/components' as *;
+@use 'tailwindcss/utilities' as *;
93
// 不使用 sass 就这么写
94
// @tailwind base;
95
// @tailwind components;
0 commit comments