Skip to content

Instantly share code, notes, and snippets.

@mbader
mbader / SassMeister-input.scss
Last active December 9, 2025 18:37
Sass Staggered Transition Delay
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@mixin staggered_transitions($nth:1,$items:2,$initial:0,$step:.1){
@for $i from $nth through $items{
&:nth-of-type(#{$i}){
transition-delay:#{$initial}s;
}