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 1ad40c0 commit ad4ad54Copy full SHA for ad4ad54
index.js
@@ -181,7 +181,7 @@ module.exports = function(css, options){
181
// prop
182
var prop = match(/^(\*?[-\/\*\w]+)\s*/);
183
if (!prop) return;
184
- prop = prop[0].replace(/^\s+|\s+$/, '');
+ prop = prop[0].replace(/^\s+|\s+$/g, '');
185
186
// :
187
if (!match(/^:\s*/)) return error("property missing ':'");
0 commit comments