aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAkianonymus <anonymus.aki@gmail.com>2022-09-15 10:00:00 +0530
committerAkianonymus <anonymus.aki@gmail.com>2022-09-15 13:51:38 +0530
commitcf4f33f5ea34f9c4e9975299b094f1a2b8b34aa0 (patch)
tree3f2558419b2643ac7af8f4abe8e67db478d64309 /test
parentfix(gitignore) Add doc/tags to .gitignore (diff)
Better structure and naming | Misc improvements
Diffstat (limited to 'test')
-rw-r--r--test/sample.scss15
1 files changed, 10 insertions, 5 deletions
diff --git a/test/sample.scss b/test/sample.scss
index 9384fd5..d89903c 100644
--- a/test/sample.scss
+++ b/test/sample.scss
@@ -1,7 +1,17 @@
@import "scss/colors1";
+// simple variables
+$test2: hotpink;
+$test5: rgb(123, 255, 123);
+$test7: rgba(255, 123, 123, 0.9);
+
+// reference
$dd: $test7;
+
+// present in colors2.sass which is imported by colors1.sass
$test0: $color1;
+// present in colors1.sass
+$test1: $color2;
// recursive definitions
$d: $test1;
@@ -9,15 +19,10 @@ $dark: $d;
$e: $dark;
$f: $e;
$g: $f;
-$h: $g;
-$test1: $color2;
-$test2: hotpink;
$test3: $color3;
$test4: $color4;
-$test5: rgb(123, 255, 123);
$test6: $color6; // this should be absent and this comment shoudl be ignored $color6: black
-$test7: rgba(255, 123, 123, 0.9);
$test8: $color8;
$test9: $color9;
$test10: $color10;