mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 23:38:56 +00:00
0f5e60274a
⬆️ Required Hugo versions above 0.109.0
16 lines
470 B
SCSS
16 lines
470 B
SCSS
:root {
|
|
// Note: Custom variable values only support SassScript inside `#{}`.
|
|
|
|
// Theme colors varibles
|
|
@each $color, $value in $theme-colors {
|
|
--#{$prefix}#{$color}: #{$value};
|
|
}
|
|
@each $color, $value in $theme-colors {
|
|
--#{$prefix}#{$color}-dark: #{darken($value, 5%)};
|
|
}
|
|
|
|
// Scroll margin top and Stack sticky top related
|
|
--#{$prefix}scroll-mt: calc(#{$header-height} + #{$global-scroll-margin-top});
|
|
--#{$prefix}breadcrumb-offset: 2.5rem;
|
|
}
|