mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-25 07:48:54 +00:00
15 lines
429 B
SCSS
15 lines
429 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});
|
|
}
|