Design system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.module.css 474 B

123456789101112131415161718192021222324252627282930313233343536
  1. .react-refractor pre {
  2. overflow: visible;
  3. padding: 0;
  4. margin: 0;
  5. line-height: 1.2;
  6. }
  7. .line-numbers {
  8. text-align: right;
  9. user-select: none;
  10. }
  11. .header {
  12. display: flex;
  13. align-items: center;
  14. justify-content: space-between;
  15. }
  16. .language {
  17. text-transform: uppercase;
  18. font-size: 0.875em;
  19. }
  20. .content-wrapper {
  21. display: flex;
  22. align-items: flex-start;
  23. }
  24. .code-wrapper {
  25. flex: auto;
  26. }
  27. .code-wrapper-scroll {
  28. overflow-x: auto;
  29. overflow-y: hidden;
  30. }