summaryrefslogtreecommitdiff
path: root/scss/tests/files/general/010-destructuring-each-2.scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss/tests/files/general/010-destructuring-each-2.scss')
-rw-r--r--scss/tests/files/general/010-destructuring-each-2.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/scss/tests/files/general/010-destructuring-each-2.scss b/scss/tests/files/general/010-destructuring-each-2.scss
new file mode 100644
index 0000000..81c4aaf
--- /dev/null
+++ b/scss/tests/files/general/010-destructuring-each-2.scss
@@ -0,0 +1,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;
+ }
+}