Open dpierangeli opened 7 years ago
I saw an issue where we had a CSS rule similar to this:
div { transform-origin: 0% 0%; } And it was getting rewritten to this (I added the spacing back in):
div { transform-origin: 0; } Which actually has a different meaning (is the same value as transform-origin: 0% 50%;)
Seems related to #91.
Yes, seems the same case.
using "transform-origin: left 0%;" is a workaround for this problem.
I saw an issue where we had a CSS rule similar to this:
div { transform-origin: 0% 0%; } And it was getting rewritten to this (I added the spacing back in):
div { transform-origin: 0; } Which actually has a different meaning (is the same value as transform-origin: 0% 50%;)