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 1e19ec2 commit d644ef2Copy full SHA for d644ef2
index.js
@@ -186,14 +186,14 @@ Compiler.prototype.rule = function(node){
186
187
return node.selectors.join(',')
188
+ '{'
189
- + decls.map(this.declaration, this).join(';')
+ + decls.map(this.visit, this).join(';')
190
+ '}';
191
}
192
193
return node.selectors.map(function(s){ return indent + s }).join(',\n')
194
+ ' {\n'
195
+ this.indent(1)
196
- + decls.map(this.declaration, this).join(';\n')
+ + decls.map(this.visit, this).join(';\n')
197
+ this.indent(-1)
198
+ '\n' + this.indent() + '}';
199
};
0 commit comments