Skip to content
This repository was archived by the owner on Dec 30, 2022. It is now read-only.

0.3.0

Choose a tag to compare

@madyankin madyankin released this 01 Jul 11:53
· 79 commits to master since this release

Added index iteration (by Anton Winogradov @verybigman):

@each $val, $i in foo, bar {
  .icon-$(val) {
    background: url("$(val)_$(i).png");
  }
}
.icon-foo {
  background: url("foo_0.png");
}

.icon-bar {
  background: url("bar_1.png");
}