_toc.scss 305 B

12345678910111213141516171819
  1. /* Table of contents */
  2. .sticky-toc {
  3. position: fixed;
  4. z-index: 1020;
  5. top: 7rem;
  6. display: none;
  7. max-width: 20rem;
  8. }
  9. .js-toc ol {
  10. list-style-type: none;
  11. }
  12. .toc-list {
  13. padding-left: 30px;
  14. }
  15. @media screen and (min-width: 980px) {
  16. .sticky-toc {
  17. display: block;
  18. }
  19. }