File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1294,10 +1294,10 @@ Its grammar is:
1294
1294
/* Invokes --two with one argument, and no contents. */
1295
1295
1296
1296
@apply --three {color: red;}
1297
- /* Invokes --three with no arguments, but with contents.
1297
+ /* Invokes --three with no arguments, but with contents. */
1298
1298
1299
1299
@apply --four(blue) {color: red;}
1300
- /* Invokes --four with both an argument and contents.
1300
+ /* Invokes --four with both an argument and contents. */
1301
1301
}
1302
1302
</pre>
1303
1303
</div>
@@ -1355,12 +1355,12 @@ having a <<declaration-list>> block makes the ''@apply'' rule invalid
1355
1355
1356
1356
<pre highlight=css>
1357
1357
@mixin --just-contents(@contents) {
1358
- @contents { content: "This is fallback." }
1358
+ @contents { color: red; }
1359
1359
}
1360
1360
1361
1361
.foo {
1362
1362
@apply --just-contents;
1363
- /* substitutes with `content: "This is fallback." ;` */
1363
+ /* substitutes with `color: red ;` */
1364
1364
}
1365
1365
.bar {
1366
1366
@apply --just-contents {};
You can’t perform that action at this time.
0 commit comments