mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-12 16:29:44 +00:00
32d46f19f4
- Update font path in style.sass to use urls.Parse - No sites should be affected if their baseURLs are correct - Address #260
31 lines
803 B
Sass
31 lines
803 B
Sass
{{ $themeStyle := .Site.Params.themeStyle | default "light" }}
|
|
$fa-font-path: '{{ urls.Parse "/fonts/fontawesome-free/webfonts" }}'
|
|
$nunito-font-path: '{{ urls.Parse "/fonts/NunitoSans" }}'
|
|
|
|
{{ if eq $themeStyle "auto" }}
|
|
@import "fonts"
|
|
@import "light-variables"
|
|
@import "base-variables"
|
|
@import "bulma-import"
|
|
@import "fontawesome-import"
|
|
@import "base"
|
|
@import "light-style"
|
|
|
|
@media (prefers-color-scheme: dark)
|
|
@import "fonts"
|
|
@import "dark-variables"
|
|
@import "base-variables"
|
|
@import "bulma-import"
|
|
@import "fontawesome-import"
|
|
@import "base"
|
|
@import "dark-style"
|
|
|
|
{{ else }}
|
|
@import "fonts"
|
|
@import "{{ $themeStyle }}-variables"
|
|
@import "base-variables"
|
|
@import "bulma-import"
|
|
@import "fontawesome-import"
|
|
@import "base"
|
|
@import "{{ $themeStyle }}-style"
|
|
{{ end }}
|