plugin.module.scss 607 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .plugin-title {
  2. font-weight: bolder;
  3. font-size: 16px;
  4. margin: 10px 0;
  5. }
  6. .plugin-content {
  7. font-size: 14px;
  8. font-family: inherit;
  9. pre code {
  10. max-height: 240px;
  11. overflow-y: auto;
  12. white-space: pre-wrap;
  13. min-width: 280px;
  14. }
  15. }
  16. .plugin-schema {
  17. display: flex;
  18. justify-content: flex-end;
  19. flex-wrap: wrap;
  20. flex-direction: row;
  21. input {
  22. margin-right: 20px;
  23. @media screen and (max-width: 600px) {
  24. margin-right: 0px;
  25. }
  26. }
  27. @media screen and (max-width: 600px) {
  28. flex-direction: column;
  29. gap: 5px;
  30. button {
  31. padding: 10px;
  32. }
  33. }
  34. }