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
> This feature is very useful when you want the same strict mode as tailwind or when you want to block a utility.
13
+
> 当你希望使用与 tailwind 相同的严格模式或希望排除一个工具类时,该特性非常有用。
14
14
>
15
15
> ```js
16
16
>// tailwind.config.js
@@ -22,24 +22,24 @@ This is a summary version that summarizes the improvements and added features fr
22
22
> },
23
23
> exclude: [
24
24
>...twEclude,
25
-
>/^first-letter:/, //diable first-letter variant
25
+
>/^first-letter:/, //禁用 first-letter 可变修饰
26
26
> ],
27
27
> }
28
28
>```
29
29
>
30
-
> Using the above configuration, utilities like `bg-hex-1c1c1e p-4.2 m-3.33px`will not be compiled into css. You can block any utility you don't want to use by using regular expressions.
@@ -72,7 +72,7 @@ This is a summary version that summarizes the improvements and added features fr
72
72
> }
73
73
>```
74
74
>
75
-
> css-in-js syntax is also supported for complex utility
75
+
> 复杂的工具类也同样支持 css-in-js 语法
76
76
>
77
77
> ```js
78
78
>// tailwind.config.js
@@ -94,38 +94,38 @@ This is a summary version that summarizes the improvements and added features fr
94
94
> }
95
95
>```
96
96
>
97
-
> The utility added by this configuration can also be directly wrapped with variant, such as `sm:btn` . The function of this feature is similar to `@apply`, it will merge all utilities into one style.
98
-
99
-
- Add support for raw and min/max in custom screen definitions
0 commit comments