Add a hook for custom variables (fix #355)

This commit is contained in:
Cotes Chung
2021-07-04 21:01:11 +08:00
parent 5f1e6e9350
commit c98a41317f
5 changed files with 38 additions and 27 deletions

View File

@@ -1,22 +1,34 @@
/*
* Mainly scss variables
*/
* The SCSS variables
*/
/* --- ↓ width and height ---- */
/* sidebar */
$tab-height: 3.2rem;
$tab-cursor-height: 1.6rem;
$sidebar-width: 260px !default; // the basic width
$sidebar-width-small: 210px !default; // screen width: >= 850px, <= 1199px (iPad landscape)
$sidebar-width-large: 350px !default; // screen width: >= 1650px
$sidebar-width-small: 210px;
$sidebar-width-medium: 260px;
$sidebar-width-large: 350px;
/* tabs of sidebar */
$topbar-height: 3rem;
$tab-count: 5 !default; // backward compatible (version <= 4.0.2)
$tab-height: 3.2rem !default;
$tab-cursor-height: 1.6rem !default;
$footer-height: 5rem;
$cursor-width: 3px !default; // the cursor width of the selected tab
$main-content-max-width: 1150px;
/* other framework sizes */
$panel-max-width: 300px;
$topbar-height: 3rem !default;
$post-extend-min-height: 35rem;
$footer-height: 5rem !default;
$footer-height-mobile: 6rem !default; // screen width: <= 576px
$main-content-max-width: 1150px !default;
$panel-max-width: 300px !default;
$post-extend-min-height: 35rem !default;
/* syntax highlight */
$code-font-size: 0.85rem !default;