In SASS, a loop is written like so:
@for $i from 1 through 100 {
//stuff
}
This would yield 1, 2, 3, 4... all the way to 100.
How would you make the loop go in intervals of two units?
@for $i from 1 through 100 *step 2*{
//stuff
}
So the result is 1, 3, 5, 7... to 99