Skip to content

Instantly share code, notes, and snippets.

@ryanberry
Created August 24, 2016 04:23
Show Gist options
  • Save ryanberry/d554872ef8915c4e949ca929e46111b9 to your computer and use it in GitHub Desktop.
Save ryanberry/d554872ef8915c4e949ca929e46111b9 to your computer and use it in GitHub Desktop.
@mixin nth-delay($delay: 200ms) {
@for $i from 1 through 20 {
&:nth-child(#{$i}) {
animation-delay: (0.2s * $i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment