content-code.module.css 574 B

1234567891011121314151617181920212223242526
  1. .root {
  2. border: 1px solid var(--sl-color-divider);
  3. background-color: var(--sl-color-bg-surface);
  4. border-radius: 0.25rem;
  5. padding: 0.5rem calc(0.5rem + 3px);
  6. &[data-flush="true"] {
  7. border: none;
  8. background-color: transparent;
  9. padding: 0;
  10. border-radius: 0;
  11. }
  12. pre {
  13. --shiki-dark-bg: var(--sl-color-bg-surface) !important;
  14. background-color: var(--sl-color-bg-surface) !important;
  15. line-height: 1.6;
  16. font-size: 0.75rem;
  17. white-space: pre-wrap;
  18. word-break: break-word;
  19. span {
  20. white-space: break-spaces;
  21. }
  22. }
  23. }