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

Vendor prefixes all defaulting to webkit #2

Open
OliverJAsh opened this issue Feb 22, 2012 · 0 comments
Open

Vendor prefixes all defaulting to webkit #2

OliverJAsh opened this issue Feb 22, 2012 · 0 comments

Comments

@OliverJAsh
Copy link

Here is how my SCSS is compiling:

@-moz-keyframes fadeInDown {
    /* line 2, /Users/Oliver/Dropbox/Sites/oliverash.me/sass/_fadeInDown.scss */
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    /* line 6, /Users/Oliver/Dropbox/Sites/oliverash.me/sass/_fadeInDown.scss */
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

Keyframes are being generated for each vendor, however the vendor prefix on the CSS transform is for some reason sticking to -webkit.

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