Skip to content

Commit c9156a0

Browse files
authored
Merge pull request #13 from mvsde/fix!/unquoted-custom-properties
fix: unquoted custom properties
2 parents 534fbe8 + 73b4664 commit c9156a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ module.exports = class Breakpoints {
251251
if (this.#config.css.customProperty) {
252252
string += `${this.#config.css.element} {`;
253253
this.#customProperties.forEach((customProperty) => {
254-
string += `--${customProperty.name}: "${customProperty.value}";`;
254+
string += `--${customProperty.name}: ${customProperty.value};`;
255255
});
256256
string += `}`;
257257
}

0 commit comments

Comments
 (0)