feat(style): add header title style config (#170)

This commit is contained in:
Dillon
2020-03-16 15:36:56 +08:00
committed by GitHub
parent 6e091b6fad
commit ee1c5c22bc
5 changed files with 18 additions and 8 deletions

View File

@@ -57,6 +57,12 @@ $header-height-mobile: 3.5rem !default;
$header-background-color: #f8f8f8 !default;
$header-background-color-dark: #252627 !default;
// Font style of the header title
$header-title-font-family: $global-font-family !default;
$header-title-font-size-desktop: 1.5rem !default;
$header-title-font-size-mobile: 1.5rem !default;
// Position of the header
$header-position-desktop: if($header-normal-mode-desktop, static, fixed) !default;
$header-position-mobile: if($header-normal-mode-mobile, static, fixed) !default;