When using border-radius explicit radii, lightning mistakes the order of the corner declaraions, switching up border-bottom-right-radius with border-bottom-left-radius.
ex
When:
/* input */
border-top-left-radius: 1% 2%;
border-top-right-radius: 3% 4%;
border-bottom-right-radius: 5% 6%;
border-bottom-left-radius: 7% 8%;
Then:
/* output */
border-radius: 1% 3% 7% 5%/2% 4% 8% 6%;
When it should:
/* output */
border-radius: 1% 3% 5% 7%/2% 4% 6% 8%;