8-Digit Hex codes not preprocessed correctly
-
This plugin is awesome, however, I have a design mockup that exports some css properties with 8-digit hex values colors and the hex colors are not exported correctly from scss to css. As a result, the particular color property is not working (displayed with an empty space in the middle). To be more specific. the following property in the scss file:
box-shadow: 0px 2px 20px #0000001A;
is transpiled in the css file tobox-shadow: 0px 2px 20px #000 1A;
For some reason, the transpiler compresses the first 6 digits into three and leaves a problematic space. In cases of 8-digit hex values, this seems to be unwanted beaviour, since it breaks down the css.
This looks like a bug to me. Can this compression be turned off, so that the css is transpiled correctyly? I am attaching a screenshot for clarity as well. Thanks in advance!
- The topic ‘8-Digit Hex codes not preprocessed correctly’ is closed to new replies.