mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
47247e01c5
- Restructure pages/ directory: shared/, posts/, specials/ modules - Add per-layout entry points (home, posts, archives, search, friends, link) - Include 404 and offline styles in main bundle - Consolidate scss-vars.html with Internal and Appearance categories - Simplify _variables.scss with @forward "hugo:vars" - Extract CSS loading logic to base/head/css.html - Update [params.appearance] with all configurable values
14 lines
495 B
SCSS
14 lines
495 B
SCSS
/// ==========================================================================
|
|
/// SCSS Variables
|
|
///
|
|
/// Configured via [params.appearance] in hugo.toml using hugo:vars.
|
|
/// Default values are defined in layouts/_partials/function/scss-vars.html.
|
|
/// ==========================================================================
|
|
@forward "core/maps";
|
|
@forward "hugo:vars";
|
|
@forward "hugo:vars/internal";
|
|
|
|
$prefix: fi- !default;
|
|
$rootPrefix: --#{$prefix} !default;
|
|
$header-height: 3.5rem !default;
|