summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/var-in-css-function.scss
diff options
context:
space:
mode:
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/var-in-css-function.scss')
-rw-r--r--theme-compiler/tests/resources/automatic/scss/var-in-css-function.scss15
1 files changed, 0 insertions, 15 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/var-in-css-function.scss b/theme-compiler/tests/resources/automatic/scss/var-in-css-function.scss
deleted file mode 100644
index 72b371ba57..0000000000
--- a/theme-compiler/tests/resources/automatic/scss/var-in-css-function.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-$very_light: 98%;
-$light: 90%;
-
-$hue1: 110;
-$saturation1: 50%;
-$very_light1: hsl($hue1, $saturation1, $very_light);
-$light1: hsl($hue1, $saturation1, $light);
-
-$color: rgb(0, 255, 13);
-.v-window-footer {
- background: linear-gradient(bottom, $very_light1, $light1);
- abc: rgba($color, .85);
-}
-
-