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

@keyframes missing name near line #13

Open
artem-malko opened this issue Dec 11, 2014 · 7 comments
Open

@keyframes missing name near line #13

artem-malko opened this issue Dec 11, 2014 · 7 comments

Comments

@artem-malko
Copy link

@Keyframes missing name near line

@artem-malko
Copy link
Author

@-ms-keyframes and etc.
You need to check prefixes in keyframes

@sirLisko
Copy link

Have you tried to change your mixing in something like this?

@mixin keyframe($animation-name) { @keyframes #{$animation-name} { @content; } }

@artem-malko
Copy link
Author

It's not a mixin, it's just code.

@artem-malko
Copy link
Author

Up

@wellhairy
Copy link

I removed the quote marks around my animation names e.g. "{yourAnimation}" and CMQ was able to run successfully.

@Keyframes "animation-name" {}
@Keyframes animation-name {}

@yahyaerturan
Copy link

it worked too

@jgmuchiri
Copy link

This won't work

@keyframes arrow /*some comment*/
{
...
}

This will work

/*some comment*/
@keyframes arrow { 
...
}

the { should be on the same like as @Keyframe declaration.

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

5 participants