summaryrefslogtreecommitdiffstats
path: root/assets/scss
diff options
context:
space:
mode:
authorSkia2020-09-25 20:33:58 +0200
committerGitHub2020-09-25 20:33:58 +0200
commit9294bdeb0c9fd2ee5343bb7052f045764975983e (patch)
tree6f14eecfa411893729b2bd26b49ea4ab5ad103e5 /assets/scss
parented47177a01f4c1f8ceadc6765b75f67c213759d1 (diff)
downloadhugo-theme-fuji-9294bdeb0c9fd2ee5343bb7052f045764975983e.tar.gz
hugo-theme-fuji-9294bdeb0c9fd2ee5343bb7052f045764975983e.tar.bz2
hugo-theme-fuji-9294bdeb0c9fd2ee5343bb7052f045764975983e.zip
fuji.scss: let the user override the theme
This allows a `[SITEROOT]/assets/scss/_custom.scss` file to override the theme without using `!important` everywhere.
Diffstat (limited to 'assets/scss')
-rw-r--r--assets/scss/fuji.scss5
1 files changed, 3 insertions, 2 deletions
diff --git a/assets/scss/fuji.scss b/assets/scss/fuji.scss
index fa29589..4d57aee 100644
--- a/assets/scss/fuji.scss
+++ b/assets/scss/fuji.scss
@@ -1,5 +1,3 @@
-@import '_custom';
-
// var & global
@import '_var';
@import '_global';
@@ -28,3 +26,6 @@
// lazy image placeholder
@import '_image';
+
+// let the user override the theme
+@import '_custom';