Skip to content

Instantly share code, notes, and snippets.

@vladkosinov
Last active August 29, 2015 14:05
Show Gist options
  • Save vladkosinov/30593fdb08bdb192c664 to your computer and use it in GitHub Desktop.
Save vladkosinov/30593fdb08bdb192c664 to your computer and use it in GitHub Desktop.
@iterations: 15;
@step: 5;
.mixin-loop(@i) when (@i > 0) {
@space-val: @i * @step;
.space-@{space-val} {
height: @space-val * 1px;
}
.mixin-loop(@i - 1);
}
.mixin-loop(@iterations);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment