markdownview.module.css 475 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. ul,
  14. ol {
  15. padding-left: 1.5rem;
  16. }
  17. h1,
  18. h2,
  19. h3,
  20. h4,
  21. h5,
  22. h6 {
  23. margin-bottom: 0.5rem;
  24. }
  25. & > *:last-child {
  26. margin-bottom: 0;
  27. }
  28. code {
  29. font-weight: 500;
  30. &::before {
  31. content: "`";
  32. font-weight: 600;
  33. }
  34. &::after {
  35. content: "`";
  36. font-weight: 600;
  37. }
  38. }
  39. }