Skip to content

Commit 11947f0

Browse files
committed
Improve Declaration.toSource()
1 parent 1272126 commit 11947f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse-css.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1344,7 +1344,7 @@ class Declaration extends CSSParserRule {
13441344
let s = printIndent(indent) + escapeIdent(this.name) + ": ";
13451345
s += this.value.map(x=>x.toSource()).join("");
13461346
if(this.important) {
1347-
s += "!important";
1347+
s += " !important";
13481348
}
13491349
s += ";";
13501350
return s;

0 commit comments

Comments
 (0)