Open virgofx opened 11 years ago
The webkit-transform gets dropped during Sass compile. Example:
.some-div { -webkit-transform: translateX(50%); -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9); }
Temporary work around using variables works.
$test: -webkit-transform; .some-div { -webkit-transform: translateX(50%); -webkit-transition: $test 0.2s cubic-bezier(0.25, 0.5, 0.5, 0.9); }
The webkit-transform gets dropped during Sass compile. Example:
Temporary work around using variables works.