jchavarri opened this issue 7 years ago · 2 comments
This fails to compile:
let t = TypedGlamor.( [%css {typed| { z-index: 7; } |typed} ]);
However, this workaround works :)
let z = TypedGlamor.int(7); let t = TypedGlamor.( [%css {typed| { z-index: z; } |typed} ]);
Should be fixed in issue9 branch.
It works! thanks :)