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 648B

12345678910111213141516171819202122232425262728293031323334353637
  1. .copy-button {
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. padding: 8px 8px 8px 16px;
  6. margin-top: 8px;
  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. &.selected {
  22. font-weight: 600;
  23. }
  24. }
  25. &.clicked {
  26. background: #31B76A;
  27. }
  28. & > div > svg > path {
  29. fill: #fff;
  30. }
  31. }