dillonzq / LoveIt

❤️A clean, elegant but advanced blog theme for Hugo 一个简洁、优雅且高效的 Hugo 主题
https://hugoloveit.com
MIT License
3.38k stars 1.07k forks source link

[FEATURE] Table of Contents (TOC) Scrollbar #783

Closed jamesdeluk closed 1 year ago

jamesdeluk commented 1 year ago

If there is a long page with a long TOC, the TOC overflows and cannot be seen. The only way to see the rest of the TOC is to scroll to the bottom of the page.

Ex: https://www.jamesgibbins.com/posts/consumption-week1/

Can the TOC have a separate scroll feature?

jamesdeluk commented 1 year ago

This can be kinda fixed with _custom.scss:

#TableOfContents {
  overflow-y: scroll;
  max-height: 500px;
}

Of course this does impose a max height, making it bad on large screens etc, but it seems okay on my 1920x1080.