Move Sass to default _sass directory via @LeoColomb #39
This commit is contained in:
parent
19706125aa
commit
b83d46fb2b
|
@ -60,7 +60,6 @@ version: v1.0.0
|
||||||
|
|
||||||
# Set the Sass partials directory, as we're using @imports
|
# Set the Sass partials directory, as we're using @imports
|
||||||
sass:
|
sass:
|
||||||
sass_dir: _scss
|
|
||||||
style: :expanded # You might prefer to minify using :compressed
|
style: :expanded # You might prefer to minify using :compressed
|
||||||
|
|
||||||
# Use the following plug-ins
|
# Use the following plug-ins
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
// IMPORTS
|
// IMPORTS
|
||||||
//
|
//
|
||||||
|
|
||||||
@import "_reset";
|
@import "reset";
|
||||||
@import "_variables";
|
@import "variables";
|
||||||
// Syntax highlighting @import is at the bottom of this file
|
// 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
|
// 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
|
// ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start
|
||||||
@import "_highlights";
|
@import "highlights";
|
||||||
@import "_svg-icons";
|
@import "svg-icons";
|
||||||
|
|
Loading…
Reference in a new issue