aboutsummaryrefslogtreecommitdiff
path: root/scss/style.scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss/style.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