Created
August 9, 2016 08:56
-
-
Save elmahdim/e9ff1536a8cb946f8be4739df495bb88 to your computer and use it in GitHub Desktop.
Sass iteration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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