hugo-tufte/assets/scss/hugo-tufte.scss
slashformotion affe4f6c81
♻️ Fixing the normalize.scss issue (#39)
Removing vendor version of normalise.scss and
replacing it with cdn version
2021-11-03 21:54:46 +01:00

22 lines
No EOL
520 B
SCSS

// VENDOR
@import "vendor/tufte.scss";
// OUR CODE
@import "general";
/// PAGES
@import "pages/footer";
/// COMPONENTS
@import "components/code-highlight";
@import "components/toc";
@import "components/nav";
@import "components/header";
@import "components/meta";
// Look at this https://gohugo.io/hugo-pipes/resource-from-template/#readout
{{ if and (isset .Site.Params "codeblocksdark") .Site.Params.codeBlocksDark }}
@import "syntax/highlight-dark.scss"
{{ else }}
@import "syntax/highlight-light.scss"
{{ end }}