From d95cb48287e93109503b0130bcfa3251cbccb5d1 Mon Sep 17 00:00:00 2001 From: Leo Date: Mon, 18 Oct 2021 23:13:53 -0500 Subject: [PATCH] - Update importing. - Write readme.md. --- readme.md | 8 ++++++++ scss/essence.scss | 7 ------- 2 files changed, 8 insertions(+), 7 deletions(-) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..114c0d8 --- /dev/null +++ b/readme.md @@ -0,0 +1,8 @@ +# Essence + +On a web project that uses Bootstrap and Webpack, simply clone this repository and add an `import` in your SCSS file. + + @import 'path/to/variables'; // Your own _variables.scss file + @import 'path/to/essence/sass/variables'; + @import '~bootstrap/scss/bootstrap`; + @import 'path/to/essence/sass/essence'; diff --git a/scss/essence.scss b/scss/essence.scss index ccdf49e..4e812a6 100644 --- a/scss/essence.scss +++ b/scss/essence.scss @@ -1,10 +1,3 @@ -// Variables -@import '~bootstrap/scss/functions'; -@import 'variables'; - -// Bootstrap -@import '~bootstrap/scss/bootstrap'; - // Bootstrap components @import 'bootstrap/buttons'; @import 'bootstrap/nav';