Colour Module: CSS output puts out wrong comma instead of semicolon #21
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Actual result: --color-blue: #2e51a1,
Expected result: --color-blue: #2e51a1;
The colour module outputs the wrong line ending at the end of a colour token. This only happens for the CSS output. SCSS uses a comma in the mixin and outputs a semicolon when looping over the colours.
I think the lines that need fixing include src/pg/core/_colour-samples.pug : 131, 133, 136