diff options
Diffstat (limited to 'theme-compiler/tests/resources/scss/remove-directive.scss')
-rw-r--r-- | theme-compiler/tests/resources/scss/remove-directive.scss | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/theme-compiler/tests/resources/scss/remove-directive.scss b/theme-compiler/tests/resources/scss/remove-directive.scss index cbfca9dcda..ca9a19522f 100644 --- a/theme-compiler/tests/resources/scss/remove-directive.scss +++ b/theme-compiler/tests/resources/scss/remove-directive.scss @@ -7,10 +7,18 @@ $remove : duck; } } -remove($animals, $remove, space); +$exotic : remove($animals, $remove, space); -@each $animal in $animals{ +@each $animal in $exotic{ .exotic-animals .#{$animal}-icon { background-image: url('/images/#{$animal}.png'); } } + +$things : remove((ball,cube,duck), duck); + +@each $thing in $things{ + .#{$thing}{ + font-size: 12px; + } +}
\ No newline at end of file |