Last active
August 29, 2015 14:25
-
-
Save tjbenton/bcfd5f396754e5eb6066 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
%keyframes{ | |
&--pulse{ | |
@keyframes pulse{ | |
0%{ | |
left: 0; | |
} | |
100%{ | |
left: 100%; | |
} | |
} | |
} | |
} | |
// If you uncomment below, it throws an error | |
// .u-animation--pulse{ | |
// @extend %keyframes--pulse; | |
// } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes pulse { | |
0% { | |
left: 0; | |
} | |
100% { | |
left: 100%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment