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

0.6.0

Latest
Compare
Choose a tag to compare
@madyankin madyankin released this 04 Aug 07:53
· 56 commits to master since this release

Added multiple variable assignment (by Ryan Tsao @rtsao):

@each $animal, $color in (puma, black), (sea-slug, blue) {
  .$(animal)-icon {
    background-image: url('/images/$(animal).png');
    border: 2px solid $color;
  }
}

```css
.puma-icon {
  background-image: url('/images/puma.png');
  border: 2px solid black;  
}

.sea-slug-icon {
  background-image: url('/images/sea-slug.png');
  border: 2px solid blue;
}