Skip to content

Instantly share code, notes, and snippets.

@tjbenton
Last active August 29, 2015 14:25
Show Gist options
  • Save tjbenton/bcfd5f396754e5eb6066 to your computer and use it in GitHub Desktop.
Save tjbenton/bcfd5f396754e5eb6066 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
// }
@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