summaryrefslogtreecommitdiff
path: root/scss/tests/files/general/010-destructuring-each-2.scss
blob: 81c4aaffd058226ebc6734b9e27fb022be3e6486 (plain)
1
2
3
4
5
6
7
8
9
@each $animal, $color, $cursor in (puma, black, default),
                                  (sea-slug, blue, pointer),
                                  (egret, white, move) {
  .#{$animal}-icon {
    background-image: url('/images/#{$animal}.png');
    border: 2px solid $color;
    cursor: $cursor;
  }
}