Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jgthms/bulma.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJeremy Thomas <bbxdesign@gmail.com>2020-11-07 21:09:34 +0300
committerJeremy Thomas <bbxdesign@gmail.com>2020-11-07 21:15:20 +0300
commit0a1ef3c4fbf05d503ac626c7f53b1b7a93ac350b (patch)
treed7c3d220bbb05c764218732e3aa83a2b816842a1 /test
parent2eaf38f3d37a9d25e6a016c46b9a2d54457679bf (diff)
Update changelog, Add custom use override
Diffstat (limited to 'test')
-rw-r--r--test/dart-sass/dart-sass.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/dart-sass/dart-sass.js b/test/dart-sass/dart-sass.js
index b904c5f5..09e2f2cc 100644
--- a/test/dart-sass/dart-sass.js
+++ b/test/dart-sass/dart-sass.js
@@ -23,6 +23,16 @@ exportDartCSS('bulma-rtl', {
file: './bulma-rtl.sass',
});
+// Custom import
+
+fs.mkdir(`${DART_BASE_PATH}custom`, { recursive: true }, (err) => {
+ if (err) throw err;
+});
+
+utils.exportCSS(sass, fs, DART_BASE_PATH, 'custom/navbar', {
+ data: '@use "./sass/components/navbar.sass" with ( $scheme-main: red );',
+});
+
// Single imports
const BULMA_IMPORT_PATH = `./sass/`;