Closed
Description
I'm trying to use a @value in the selector but currently it doesn't work,the hash is propagated instead (eg: i__const_borderColor_288
) in the following code:
@value featured-light-text-color as borderColor from "styles/colors";
/* it can't be import values due a bug */
@svg-load bgImage url('./image.svg') {
polygon, line {
stroke: borderColor;
}
}
When using local values, it works:
@value borderColor: #F00;
/* it can't be import values due a bug */
@svg-load bgImage url('./image.svg') {
polygon, line {
stroke: borderColor;
}
}
Metadata
Metadata
Assignees
Labels
No labels