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

Prefixed @keyframes are not transformed #1504

Closed
kaisermann opened this issue May 27, 2018 · 1 comment · Fixed by #1505
Closed

Prefixed @keyframes are not transformed #1504

kaisermann opened this issue May 27, 2018 · 1 comment · Fixed by #1505

Comments

@kaisermann
Copy link
Member

Prefixed @keyframes don't have their name transformed.
REPL

The generated css is:

h1.svelte-1vhi2c7{
  -webkit-animation:grow 2s infinite;
  -moz-animation:grow 2s infinite;
  -o-animation:grow 2s infinite;
  animation:svelte-1vhi2c7-grow 2s infinite 
}

@-webkit-keyframes grow {}
@-moz-keyframes grow {}
@-o-keyframes grow {}
@keyframes svelte-1vhi2c7-grow{0%{font-size:12px }50%{font-size:40px}100%{font-size:12px}}
@Rich-Harris
Copy link
Member

released 2.7.0 with the fix — thanks

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

Successfully merging a pull request may close this issue.

2 participants