summaryrefslogtreecommitdiff
path: root/scss/tests/files/general/each-destructuring-3.scss
blob: 6340d03b7fa3313a21d3be733cfc4c0eecec8999 (plain)
1
2
3
4
5
6
7
8
9
10
11
@option style:legacy;

@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;
  }
}