How can I rewrite the following line into a multi-line form in stylus?
div
box-shadow 0 0 0 black, 1 0 0, black, 0 0 1, black
Using a much larger list of properties for box-shadow will make my editor explode. I want sth like this, but Stylus syntax will not allow it:
div
box-shadow
0 0 0 black,
1 0 0 black,
0 0 1 black
Also omitting the commas is not working. This is frustrating...