diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2020-02-04 22:39:12 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2020-02-04 22:39:12 +0100 |
commit | 4e03ee583519fcf01a0c5a2941af311cf4d1aa44 (patch) | |
tree | a3ac1d0626712c80e55a0edbac08e2e4c0a95d08 /assets/_defaults.scss | |
parent | c0bd5b5bb899343ef8b18cceec1982ab8980b236 (diff) |
#138, Lower minimum body width from 400px to 320px, regression
Diffstat (limited to 'assets/_defaults.scss')
-rw-r--r-- | assets/_defaults.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/_defaults.scss b/assets/_defaults.scss index af7aa24..85b066a 100644 --- a/assets/_defaults.scss +++ b/assets/_defaults.scss @@ -31,14 +31,14 @@ $body-background: white !default; $body-font-color: $gray-800 !default; $body-font-weight: normal !default; -$body-min-width: 25rem !default; +$body-min-width: 20rem !default; $container-max-width: 80rem !default; $header-height: 3.5rem !default; $menu-width: 16rem !default; $toc-width: 16rem !default; -$mobile-breakpoint: $menu-width + $body-min-width + $toc-width !default; +$mobile-breakpoint: $menu-width + $body-min-width * 1.2 + $toc-width !default; // Hint colors $hint-colors: ( |