aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Barry Clark <barry@barryclark.co> 2015-02-23 01:14:19 -0500
committerGravatar Barry Clark <barry@barryclark.co> 2015-02-23 01:14:19 -0500
commitb83d46fb2b803417bfb0125039b885f2182bcf7b (patch)
treec824c07769db8b6ca904fee2b8d6a94b8876c8e4
parent19706125aa88f5afa42a5763d4773fe1f34c6bbb (diff)
downloadkompetenzbolzen.github.io-b83d46fb2b803417bfb0125039b885f2182bcf7b.tar.gz
Move Sass to default _sass directory via @LeoColomb #39
-rw-r--r--_config.yml1
-rw-r--r--_sass/_highlights.scss (renamed from _scss/_highlights.scss)0
-rw-r--r--_sass/_reset.scss (renamed from _scss/_reset.scss)0
-rw-r--r--_sass/_svg-icons.scss (renamed from _scss/_svg-icons.scss)0
-rw-r--r--_sass/_variables.scss (renamed from _scss/_variables.scss)0
-rwxr-xr-xstyle.scss8
6 files changed, 4 insertions, 5 deletions
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
index 57c7b72..57c7b72 100644
--- a/_scss/_highlights.scss
+++ b/_sass/_highlights.scss
diff --git a/_scss/_reset.scss b/_sass/_reset.scss
index 120eebf..120eebf 100644
--- a/_scss/_reset.scss
+++ b/_sass/_reset.scss
diff --git a/_scss/_svg-icons.scss b/_sass/_svg-icons.scss
index f8b78ad..f8b78ad 100644
--- a/_scss/_svg-icons.scss
+++ b/_sass/_svg-icons.scss
diff --git a/_scss/_variables.scss b/_sass/_variables.scss
index e56c1c5..e56c1c5 100644
--- a/_scss/_variables.scss
+++ b/_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";