diff options
author | Skia | 2020-09-27 16:37:35 +0200 |
---|---|---|
committer | Skia | 2020-09-28 19:56:01 +0200 |
commit | e63f48a348f9de18cb3b75254f329fe2d2f66121 (patch) | |
tree | 2ab7d8b1fea322a4a53b277c983908527398f112 /README.md | |
parent | 92909aa4796fa83661652ec5e66655f394845ee9 (diff) | |
download | hugo-theme-fuji-e63f48a348f9de18cb3b75254f329fe2d2f66121.tar.gz hugo-theme-fuji-e63f48a348f9de18cb3b75254f329fe2d2f66121.tar.bz2 hugo-theme-fuji-e63f48a348f9de18cb3b75254f329fe2d2f66121.zip |
fuji.scss: let the user override both the variables and the CSS rules
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -218,9 +218,9 @@ Use the `[SITEROOT]/layouts/partials/comment-*.html` to cover `themes/fuji/layou > Hugo extended version needed. -You can cover theme's internal SCSS variables with your own. Create `[SITEROOT]/assets/scss/_custom.scss` to cover variables in SCSS. +You can override theme's internal SCSS variables with your own. Create `[SITEROOT]/assets/scss/_custom_var.scss` to cover variables in SCSS. -Varibales available: +Variables available: ```scss $body-font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Helvetica', 'Arial', 'PingFang SC', @@ -248,6 +248,9 @@ $dark-color-bg: #2f3136; // Discord $dark-color-codebg: #414449; // GitHub ``` +To override SCSS rules, create `[SITEROOT]/assets/scss/_custom_rules.scss`. This file will have priority over anything regarding CSS rules, but is useless for changing variables that are used elsewhere in the theme. + + ## ✏️ Issue und contributing Feel free to use the [issue tracker](https://github.com/amzrk2/hugo-theme-fuji/issues). The theme has only been fully tested on Firefox, so if there are some problems when accessing with Chrome or others please also report an issue. |