style.module.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .customModal {
  2. max-width: 800px !important;
  3. max-height: calc(100vh - 80px);
  4. }
  5. .close {
  6. top: 1.5rem;
  7. right: 1.5rem;
  8. }
  9. .trash {
  10. color: transparent;
  11. }
  12. .w64 {
  13. width: 4rem;
  14. }
  15. .customApi {
  16. font-size: 11px;
  17. }
  18. .autoWidth {
  19. width: auto;
  20. }
  21. .trashIcon {
  22. background-color: transparent;
  23. background-image: url(./assets/trash-gray.svg);
  24. background-position: center;
  25. background-repeat: no-repeat;
  26. background-size: 16px 16px;
  27. }
  28. .trashIcon:hover {
  29. background-color: rgba(254, 228, 226, 1);
  30. background-image: url(./assets/trash-red.svg);
  31. background-position: center;
  32. background-repeat: no-repeat;
  33. background-size: 16px 16px;
  34. }
  35. .copyIcon {
  36. background-image: url(./assets/copy.svg);
  37. background-position: center;
  38. background-repeat: no-repeat;
  39. }
  40. .copyIcon:hover {
  41. background-image: url(./assets/copy-hover.svg);
  42. background-position: center;
  43. background-repeat: no-repeat;
  44. }
  45. .copyIcon.copied {
  46. background-image: url(./assets/copied.svg);
  47. }