mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
fix: resolve variable
This commit is contained in:
parent
f853f0a096
commit
41d65f709e
1 changed files with 3 additions and 3 deletions
|
|
@ -13,15 +13,15 @@ $name: gitako;
|
|||
|
||||
$min-screen-width: 1280px;
|
||||
$github-content-width: 1020px;
|
||||
$side-bar-base-width: ($min-screen-width - $github-content-width);
|
||||
$min-width-with-gitako: ($min-screen-width + $side-bar-base-width);
|
||||
$side-bar-base-width: $min-screen-width - $github-content-width;
|
||||
$min-width-with-gitako: $min-screen-width + $side-bar-base-width;
|
||||
|
||||
$github-header-z-index: 32;
|
||||
$github-pull-request-float-header-z-index: 110;
|
||||
$minimal-z-index: max($github-header-z-index, $github-pull-request-float-header-z-index) + 1;
|
||||
|
||||
:root {
|
||||
--gitako-width: $side-bar-base-width;
|
||||
--gitako-width: #{$side-bar-base-width};
|
||||
}
|
||||
|
||||
.#{$name}-ready {
|
||||
|
|
|
|||
Loading…
Reference in a new issue