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 a88398d commit 19b5f86Copy full SHA for 19b5f86
parser.es6
@@ -503,7 +503,7 @@ class SassParser {
503
504
// Create Rule node
505
const atrule = postcss.atRule()
506
- atrule.name = node.type;
+ atrule.name = node.type
507
508
// Object to store raws for Atrule
509
const atRuleRaws = {
@@ -555,7 +555,7 @@ class SassParser {
555
556
557
558
559
560
561
@@ -599,7 +599,6 @@ class SassParser {
599
input: this.input
600
}
601
atrule.raws = atRuleRaws
602
- console.log(atrule);
603
parent.nodes.push(atrule)
604
605
0 commit comments