plugin.module.scss 588 B

1234567891011121314151617181920212223242526272829303132333435363738
  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-direction: row;
  20. input {
  21. margin-right: 20px;
  22. @media screen and (max-width: 600px) {
  23. margin-right: 0px;
  24. }
  25. }
  26. @media screen and (max-width: 600px) {
  27. flex-direction: column;
  28. gap: 5px;
  29. button {
  30. padding: 10px;
  31. }
  32. }
  33. }