style.scoped.scss 824 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .track-item {
  2. $size: 40px;
  3. width: 100%;
  4. height: $size;
  5. display: flex;
  6. justify-content: space-between;
  7. align-items: center;
  8. background-color: rgba($color: #fff, $alpha: 0.1);
  9. border-radius: 8px;
  10. margin-bottom: 15px;
  11. .name {
  12. padding-left: 25px;
  13. font-size: 18px;
  14. }
  15. .button-remove {
  16. height: $size;
  17. width: $size;
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. background-color: rgba(254, 127, 1, 0.6);
  22. border-top-right-radius: 8px;
  23. border-bottom-right-radius: 8px;
  24. transition: 0.3s;
  25. img {
  26. width: 15px;
  27. height: 15px;
  28. }
  29. &:hover {
  30. cursor: pointer;
  31. background-color: rgba(254, 127, 1, 1);
  32. }
  33. }
  34. }