diff --git a/_config.yml b/_config.yml index 7fd0a3e..38e0d78 100644 --- a/_config.yml +++ b/_config.yml @@ -60,7 +60,6 @@ version: v1.0.0 # Set the Sass partials directory, as we're using @imports sass: - sass_dir: _scss style: :expanded # You might prefer to minify using :compressed # Use the following plug-ins diff --git a/_scss/_highlights.scss b/_sass/_highlights.scss similarity index 100% rename from _scss/_highlights.scss rename to _sass/_highlights.scss diff --git a/_scss/_reset.scss b/_sass/_reset.scss similarity index 100% rename from _scss/_reset.scss rename to _sass/_reset.scss diff --git a/_scss/_svg-icons.scss b/_sass/_svg-icons.scss similarity index 100% rename from _scss/_svg-icons.scss rename to _sass/_svg-icons.scss diff --git a/_scss/_variables.scss b/_sass/_variables.scss similarity index 100% rename from _scss/_variables.scss rename to _sass/_variables.scss diff --git a/style.scss b/style.scss index a252974..3915a90 100755 --- a/style.scss +++ b/style.scss @@ -5,8 +5,8 @@ // IMPORTS // -@import "_reset"; -@import "_variables"; +@import "reset"; +@import "variables"; // Syntax highlighting @import is at the bottom of this file /**************/ @@ -285,5 +285,5 @@ footer { // Settled on moving the import of syntax highlighting to the bottom of the CSS // ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start -@import "_highlights"; -@import "_svg-icons"; +@import "highlights"; +@import "svg-icons";