Skip to content

Instantly share code, notes, and snippets.

@jackie
jackie / gist:73c8f727999633dfb10c
Created February 24, 2015 19:24
Sass animation keyframe mixin
//
// keyframes - prints out vendor-prefixed keyframe declarations
//
// $name - the name of your animation
//
@mixin keyframes($name) {
@-moz-keyframes #{$name} {
@content;
}