markdownview.module.css 431 B

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