diff options
Diffstat (limited to 'assets/_variables.scss')
-rw-r--r-- | assets/_variables.scss | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/assets/_variables.scss b/assets/_variables.scss index 1890e35..19d69b9 100644 --- a/assets/_variables.scss +++ b/assets/_variables.scss @@ -23,21 +23,18 @@ $black: #000; $color-link: #004ed0; $color-visited-link: #8440f1; +$color-dark-link: $gray-800; $body-background: white; $body-font-color: $gray-800; $body-font-weight: 400; -$body-min-width: 25rem; -$nav-background: $body-background; -$nav-link-color: $gray-800; +$body-min-width: 20rem; +$container-max-width: 80rem; $header-height: 3.5rem; -$menu-width: 18rem; +$menu-width: 16rem; $toc-width: 14rem; -$container-min-width: $body-min-width; -$container-max-width: 80rem; - -$sm-breakpoint: $menu-width + $body-min-width; -$md-breakpoint: $sm-breakpoint + $toc-width;
\ No newline at end of file +$sm-breakpoint: $menu-width + $body-min-width + 5; +$md-breakpoint: $sm-breakpoint + $toc-width; |