index.module.css 503 B

123456789101112131415161718192021
  1. .modal {
  2. padding: 32px !important;
  3. width: 480px !important;
  4. background: linear-gradient(180deg, rgba(3, 152, 85, 0.05) 0%, rgba(3, 152, 85, 0) 22.44%), #F9FAFB !important;
  5. }
  6. .copyIcon {
  7. background-image: url(./assets/copy.svg);
  8. background-position: center;
  9. background-repeat: no-repeat;
  10. }
  11. .copyIcon:hover {
  12. background-image: url(./assets/copy-hover.svg);
  13. background-position: center;
  14. background-repeat: no-repeat;
  15. }
  16. .copyIcon.copied {
  17. background-image: url(./assets/copied.svg);
  18. }