Skip to content

Commit

Permalink
fix: do not add commas
Browse files Browse the repository at this point in the history
  • Loading branch information
axyz committed May 29, 2020
1 parent 23c55cf commit 2593021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/defineClass.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = (name, props, meta = {}) => {

return postcss
.rule({
selectors: `.${escapeClassName(name)}`.split(" "),
selector: `.${escapeClassName(name)}`,
meta
})
.append(decls);
Expand Down

0 comments on commit 2593021

Please sign in to comment.