diff options
Diffstat (limited to 'node_modules/node-sass/test/fixtures/custom-functions')
4 files changed, 0 insertions, 7 deletions
diff --git a/node_modules/node-sass/test/fixtures/custom-functions/setter-expected.css b/node_modules/node-sass/test/fixtures/custom-functions/setter-expected.css deleted file mode 100644 index 9b67ea9..0000000 --- a/node_modules/node-sass/test/fixtures/custom-functions/setter-expected.css +++ /dev/null @@ -1,3 +0,0 @@ -div { - width: 42rem; - height: 84px; } diff --git a/node_modules/node-sass/test/fixtures/custom-functions/setter.scss b/node_modules/node-sass/test/fixtures/custom-functions/setter.scss deleted file mode 100644 index fbc6116..0000000 --- a/node_modules/node-sass/test/fixtures/custom-functions/setter.scss +++ /dev/null @@ -1 +0,0 @@ -div { width: foo(42px); height: bar(42px); } diff --git a/node_modules/node-sass/test/fixtures/custom-functions/string-conversion-expected.css b/node_modules/node-sass/test/fixtures/custom-functions/string-conversion-expected.css deleted file mode 100644 index 741d2cb..0000000 --- a/node_modules/node-sass/test/fixtures/custom-functions/string-conversion-expected.css +++ /dev/null @@ -1,2 +0,0 @@ -div { - color: "barbar"; } diff --git a/node_modules/node-sass/test/fixtures/custom-functions/string-conversion.scss b/node_modules/node-sass/test/fixtures/custom-functions/string-conversion.scss deleted file mode 100644 index 4e6403f..0000000 --- a/node_modules/node-sass/test/fixtures/custom-functions/string-conversion.scss +++ /dev/null @@ -1 +0,0 @@ -div { color: foo("bar"); } |