_article.scss 301 B

12345678910111213141516
  1. @import "variables";
  2. .article-toc {
  3. #TableOfContents > ul {
  4. list-style-type: none;
  5. padding-left: 0;
  6. > li > ul {
  7. list-style-type: disc;
  8. color: $gray-600;
  9. > li {
  10. margin-bottom: $padding-8;
  11. }
  12. }
  13. }
  14. }