diff options
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/mixin_variables.scss')
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/mixin_variables.scss | 10 |
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); |