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:
12941294 /* Invokes --two with one argument, and no contents. */
12951295
12961296 @apply --three {color: red;}
1297- /* Invokes --three with no arguments, but with contents.
1297+ /* Invokes --three with no arguments, but with contents. */
12981298
12991299 @apply --four(blue) {color: red;}
1300- /* Invokes --four with both an argument and contents.
1300+ /* Invokes --four with both an argument and contents. */
13011301 }
13021302 </pre>
13031303</div>
@@ -1355,12 +1355,12 @@ having a <<declaration-list>> block makes the ''@apply'' rule invalid
13551355
13561356 <pre highlight=css>
13571357 @mixin --just-contents(@contents) {
1358- @contents { content: "This is fallback." }
1358+ @contents { color: red; }
13591359 }
13601360
13611361 .foo {
13621362 @apply --just-contents;
1363- /* substitutes with `content: "This is fallback." ;` */
1363+ /* substitutes with `color: red ;` */
13641364 }
13651365 .bar {
13661366 @apply --just-contents {};
You can’t perform that action at this time.
0 commit comments