@unocss/postcss 0.50.7 → 0.50.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -10
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -92,16 +92,16 @@ The `@screen` directive allows you to create media queries that reference your b
|
|
|
92
92
|
|
|
93
93
|
```css
|
|
94
94
|
.grid {
|
|
95
|
-
|
|
95
|
+
@apply grid grid-cols-2;
|
|
96
96
|
}
|
|
97
97
|
@screen xs {
|
|
98
98
|
.grid {
|
|
99
|
-
|
|
99
|
+
@apply grid-cols-1;
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
@screen sm {
|
|
103
103
|
.grid {
|
|
104
|
-
|
|
104
|
+
@apply grid-cols-3;
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
/* ... */
|
|
@@ -135,16 +135,16 @@ Will be transformed to:
|
|
|
135
135
|
|
|
136
136
|
```css
|
|
137
137
|
.grid {
|
|
138
|
-
|
|
138
|
+
@apply grid grid-cols-2;
|
|
139
139
|
}
|
|
140
140
|
@screen lt-xs {
|
|
141
141
|
.grid {
|
|
142
|
-
|
|
142
|
+
@apply grid-cols-1;
|
|
143
143
|
}
|
|
144
144
|
}
|
|
145
145
|
@screen lt-sm {
|
|
146
146
|
.grid {
|
|
147
|
-
|
|
147
|
+
@apply grid-cols-3;
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
150
|
/* ... */
|
|
@@ -174,21 +174,21 @@ Will be transformed to:
|
|
|
174
174
|
|
|
175
175
|
```css
|
|
176
176
|
.grid {
|
|
177
|
-
|
|
177
|
+
@apply grid grid-cols-2;
|
|
178
178
|
}
|
|
179
179
|
@screen at-xs {
|
|
180
180
|
.grid {
|
|
181
|
-
|
|
181
|
+
@apply grid-cols-1;
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
184
|
@screen at-xl {
|
|
185
185
|
.grid {
|
|
186
|
-
|
|
186
|
+
@apply grid-cols-3;
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
189
|
@screen at-xxl {
|
|
190
190
|
.grid {
|
|
191
|
-
|
|
191
|
+
@apply grid-cols-4;
|
|
192
192
|
}
|
|
193
193
|
}
|
|
194
194
|
/* ... */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/postcss",
|
|
3
|
-
"version": "0.50.
|
|
3
|
+
"version": "0.50.8",
|
|
4
4
|
"description": "PostCSS plugin for UnoCSS",
|
|
5
5
|
"author": "sibbng <sibbngheid@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"fast-glob": "^3.2.12",
|
|
41
41
|
"magic-string": "^0.30.0",
|
|
42
42
|
"postcss": "^8.4.21",
|
|
43
|
-
"@unocss/config": "0.50.
|
|
44
|
-
"@unocss/core": "0.50.
|
|
43
|
+
"@unocss/config": "0.50.8",
|
|
44
|
+
"@unocss/core": "0.50.8"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "unbuild",
|