_toc.scss 591 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // stylelint-disable selector-max-type
  2. .bd-toc {
  3. @include media-breakpoint-up(lg) {
  4. position: sticky;
  5. top: 5rem;
  6. right: 0;
  7. z-index: 2;
  8. height: subtract(100vh, 7rem);
  9. overflow-y: auto;
  10. }
  11. nav {
  12. @include font-size(.875rem);
  13. ul {
  14. padding-left: 0;
  15. list-style: none;
  16. ul {
  17. padding-left: 1rem;
  18. margin-top: .25rem;
  19. }
  20. }
  21. li {
  22. margin-bottom: .25rem;
  23. }
  24. a {
  25. color: inherit;
  26. &:not(:hover) {
  27. text-decoration: none;
  28. }
  29. code {
  30. font: inherit;
  31. }
  32. }
  33. }
  34. }