I find Syntactically Awesome Stylesheets, far more readable than Sassy CSS, however the one thing which makes it unreadable at times is that I don't know how to format a new line in the file.
For instance this rule is unreadable because it's really long.
.gradient
background: radial-gradient(ellipse farthest-corner at 50% 0, rgba(0, 0, 0, 0.23) -10%, rgba(0, 0, 0, 0.06) 15%, rgba(255, 255, 255, 0.19) 80%, transparent)
It would be cool if I could do something like this, like I can in python?
.gradient
background: radial-gradient(ellipse farthest-corner at 50% 0, \
rgba(0, 0, 0, 0.23) -10%,\
rgba(0, 0, 0, 0.06) 15%, \
rgba(255, 255, 255, 0.19) 80%, \
transparent)
Is there anyway I can do this or something similar?
If there is not a way to do this could someone point me to where I file an issue?