Closed alvik48 closed 9 years ago
Hi.
When compiling .styl file, I get error on text-shadow property. Example:
.logo text-shadow 1px 1px 2px rgba(#000, .6)
.logo { text-shadow: 1px; }
But if I add ,; in source file or simply add another text-shadow, then first text-shadow will appeared correctly. Example:
.logo text-shadow 1px 1px 2px rgba(#000, .6),;
.logo { text-shadow: 1px 1px 2px rgba(0,0,0,0.6); }
This issue reproduces in repo https://github.com/alvik48/speed-markup, look to .logo class.
This is a stylus error, you can file it in the stylus repo
Hi.
When compiling .styl file, I get error on text-shadow property. Example:
app.styl
app.css
But if I add ,; in source file or simply add another text-shadow, then first text-shadow will appeared correctly. Example:
app.styl
app.css
This issue reproduces in repo https://github.com/alvik48/speed-markup, look to .logo class.