SASS is converting “at top right” to “right top” i

2019-08-06 01:24发布

问题:

I am currently using the following property in CSS:

background: radial-gradient(at top right, rgba(0,0,0,0.1), rgba(0,0,0,0));

If I try this property in my browser, it works fine, though when I put it in my sass file, it is somehow converted to css incorrectly.

background: radial-gradient(right top, rgba(0,0,0,0.1), rgba(0,0,0,0));

at top right is converted to right top.

Anything I could do to prevent this ?

Thanks