You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

copy.scss 676B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .copy-button {
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. padding: 8px 8px 8px 16px;
  6. margin-top: 5px;
  7. width: calc(100% - 24px);
  8. height: 24px;
  9. background: #0376DA;
  10. border-radius: 4px;
  11. cursor: pointer;
  12. &:hover {
  13. background: #278ADF;
  14. font-weight: 600;
  15. }
  16. &-content {
  17. overflow: hidden;
  18. text-overflow: ellipsis;
  19. white-space: nowrap;
  20. max-width: 292px;
  21. margin-right: 16px;
  22. &.selected {
  23. font-weight: 600;
  24. }
  25. }
  26. &.clicked {
  27. background: #31B76A;
  28. }
  29. & > div > svg > path {
  30. fill: #fff;
  31. }
  32. }