Skip to content

Instantly share code, notes, and snippets.

@elmahdim
Created August 9, 2016 08:56
Show Gist options
  • Save elmahdim/e9ff1536a8cb946f8be4739df495bb88 to your computer and use it in GitHub Desktop.
Save elmahdim/e9ff1536a8cb946f8be4739df495bb88 to your computer and use it in GitHub Desktop.
Sass iteration
$colors-pallette: (#5856d6, #008aff, #34aadc, #ff2d55);
.wrapper {
@for $i from 1 through length($colors-pallette) {
&:nth-child(#{length($colors-pallette)}n+#{$i}) {
.item {
background-color: nth($colors-pallette, $i);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment