style.module.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .customModal {
  2. max-width: 40rem !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. .w320 {
  16. width: 20rem;
  17. }
  18. .customApi {
  19. font-size: 11px;
  20. }
  21. .autoWidth {
  22. width: auto;
  23. }
  24. .trashIcon {
  25. background-color: transparent;
  26. background-image: url(./assets/trash-gray.svg);
  27. background-position: center;
  28. background-repeat: no-repeat;
  29. background-size: 16px 16px;
  30. }
  31. .trashIcon:hover {
  32. background-color: rgba(254, 228, 226, 1);
  33. background-image: url(./assets/trash-red.svg);
  34. background-position: center;
  35. background-repeat: no-repeat;
  36. background-size: 16px 16px;
  37. }
  38. .copyIcon {
  39. background-image: url(./assets/copy.svg);
  40. background-position: center;
  41. background-repeat: no-repeat;
  42. }
  43. .copyIcon:hover {
  44. background-image: url(./assets/copy-hover.svg);
  45. background-position: center;
  46. background-repeat: no-repeat;
  47. }
  48. .copyIcon.copied {
  49. background-image: url(./assets/copied.svg);
  50. }