markdownview.module.css 540 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .markdown-body {
  2. font-size: 0.875rem;
  3. line-height: 1.5;
  4. p,
  5. blockquote,
  6. ul,
  7. ol,
  8. dl,
  9. table,
  10. pre {
  11. margin-bottom: 1rem;
  12. }
  13. ol {
  14. list-style-position: inside;
  15. padding-left: 0.75rem;
  16. }
  17. ul {
  18. padding-left: 1.5rem;
  19. }
  20. h1,
  21. h2,
  22. h3,
  23. h4,
  24. h5,
  25. h6 {
  26. margin-bottom: 0.5rem;
  27. }
  28. & > *:last-child {
  29. margin-bottom: 0;
  30. }
  31. code {
  32. font-weight: 500;
  33. &::before {
  34. content: "`";
  35. font-weight: 600;
  36. }
  37. &::after {
  38. content: "`";
  39. font-weight: 600;
  40. }
  41. }
  42. }