Skip to content

Commit

Permalink
Merge pull request #13 from mvsde/fix!/unquoted-custom-properties
Browse files Browse the repository at this point in the history
fix: unquoted custom properties
  • Loading branch information
dnnsjrng authored Nov 10, 2022
2 parents 534fbe8 + 73b4664 commit c9156a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ module.exports = class Breakpoints {
if (this.#config.css.customProperty) {
string += `${this.#config.css.element} {`;
this.#customProperties.forEach((customProperty) => {
string += `--${customProperty.name}: "${customProperty.value}";`;
string += `--${customProperty.name}: ${customProperty.value};`;
});
string += `}`;
}
Expand Down

0 comments on commit c9156a0

Please sign in to comment.