diff options
author | DSRKafuU | 2021-03-15 09:39:25 +0800 |
---|---|---|
committer | GitHub | 2021-03-15 09:39:25 +0800 |
commit | c7b17246991c7529965579309ea28cf1a2a1e2ad (patch) | |
tree | 6492730018e9717935e8f8c4040e111db43f14f6 /assets/scss/_fuji-style | |
parent | 014e44a247b90628c4706fe7a69db4664daba3c5 (diff) | |
parent | 9cf3926779d18337c9793087e5242cfa2c4a2fc1 (diff) | |
download | hugo-theme-fuji-c7b17246991c7529965579309ea28cf1a2a1e2ad.tar.gz hugo-theme-fuji-c7b17246991c7529965579309ea28cf1a2a1e2ad.tar.bz2 hugo-theme-fuji-c7b17246991c7529965579309ea28cf1a2a1e2ad.zip |
fix: table of contents overflow #71
Merge pull request #71 from alexmitelman/max_height_for_toc
Diffstat (limited to 'assets/scss/_fuji-style')
-rw-r--r-- | assets/scss/_fuji-style/_sidebar.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/scss/_fuji-style/_sidebar.scss b/assets/scss/_fuji-style/_sidebar.scss index e913d95..1b8ae12 100644 --- a/assets/scss/_fuji-style/_sidebar.scss +++ b/assets/scss/_fuji-style/_sidebar.scss @@ -81,7 +81,7 @@ top: 1rem; #TableOfContents { - max-height: 32rem; + max-height: 80vh; overflow: auto; scrollbar-width: thin; } |