Open jbelfodil opened 7 years ago
Hello,
I have a weird issue :
const foo = 4 const rule = css` transform: scaleX(${foo}) `; //.css-1sne24e,[data-css-1sne24e]{-webkit-transform:scaleX(foo);transform:scaleX(foo);}
const foo = 4 const rule = css` transform: scale(${foo},0) `; //.css-1sne24e,[data-css-1sne24e]{-webkit-transform:scale(4,0);transform:scale(4,0);}
Any advices ??
Thx :)
appears to be a bug with the literal notation. recommend you use the object notation to avoid this bug for now. will keep this open till the bug is fixed.
Hello,
I have a weird issue :
Any advices ??
Thx :)