migrated mulish font and darkreader

This commit is contained in:
Aaron Qian 2022-11-14 00:05:03 -08:00 committed by Aaron Qian
parent 0379080b52
commit c2eb8245dc
No known key found for this signature in database
GPG key ID: BF1A987C395B5B0E
28 changed files with 43 additions and 301 deletions

View file

@ -1,11 +1,21 @@
// loading bootstrap
// TODO: Refactor to use bootstrap sass variable for theming.
@import 'bootstrap/scss/bootstrap.scss';
// The Mulish font, we use font-weight 300 - 700
@import '@fontsource/mulish/300';
@import '@fontsource/mulish/index'; // 400
@import '@fontsource/mulish/500';
@import '@fontsource/mulish/600';
@import '@fontsource/mulish/700';
// layouts
@import './layouts/main';
// navigators
@import './navigators/navbar';
// features and services, only imported if enabled.
{{ range $feature, $featureDef := site.Params.features }}
{{ with $featureDef }}
{{ $featureEnabled := or (not (isset . "enable")) .enable }}