Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explicit Hyphenated Transition Names Fail #125

Open
virgofx opened this issue Aug 8, 2013 · 0 comments
Open

Explicit Hyphenated Transition Names Fail #125

virgofx opened this issue Aug 8, 2013 · 0 comments

Comments

@virgofx
Copy link

virgofx commented Aug 8, 2013

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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant