aboutsummaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorGravatar Barry Clark <barry@barryclark.co> 2014-06-01 18:07:17 -0400
committerGravatar Barry Clark <barry@barryclark.co> 2014-06-01 18:07:17 -0400
commit3d5bee22052a20cf328a85309daa0d855b7e1d54 (patch)
treebdae3c2f5933d935d5e595a94864b2615270f649 /scss
parent0dae8f2e64ef610c370b8222953ae4618a4c1d40 (diff)
downloadkompetenzbolzen.github.io-3d5bee22052a20cf328a85309daa0d855b7e1d54.tar.gz
Moving syntax highlighting to the bottom of the CSS file
Diffstat (limited to 'scss')
-rwxr-xr-xscss/style.scss8
1 files changed, 5 insertions, 3 deletions
diff --git a/scss/style.scss b/scss/style.scss
index abcc20f..f8c31da 100755
--- a/scss/style.scss
+++ b/scss/style.scss
@@ -5,8 +5,6 @@
@import "_reset";
@import "_variables";
-@import "_highlights";
-// TODO - Tempted to move this to the end of the file, so that it shows up at the end of the .css. Or remove it entirely and find a better way to include highlighting.
/*/
/* BASE RULES
@@ -268,4 +266,8 @@ nav {
footer {
padding: 20px 0;
text-align: center;
-} \ No newline at end of file
+}
+
+// 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"; \ No newline at end of file