Skip to content

Commit 73b4664

Browse files
committed
fix: unquoted custom properties
1 parent fe90b3f commit 73b4664

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)