summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/mixin_variables.scss
diff options
context:
space:
mode:
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/mixin_variables.scss')
-rw-r--r--theme-compiler/tests/resources/automatic/scss/mixin_variables.scss10
1 files changed, 0 insertions, 10 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/mixin_variables.scss b/theme-compiler/tests/resources/automatic/scss/mixin_variables.scss
deleted file mode 100644
index 28cde661dd..0000000000
--- a/theme-compiler/tests/resources/automatic/scss/mixin_variables.scss
+++ /dev/null
@@ -1,10 +0,0 @@
-@mixin color($color : red, $tag : bar) {
- .#{$tag} {
- color: $color;
- }
-}
-$color : green;
-@include color($color: purple, $tag : foo);
-@include color($tag : baz);
-@include color($color: $color, $tag : foobar);
-@include color($tag : foobaz);