AudioItem.style.js 755 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import styled from "styled-components";
  2. export const FileWrap = styled.div`
  3. display: flex;
  4. justify-content: left;
  5. align-items: center;
  6. margin: 5px 0;
  7. `;
  8. export const FileIconWrap = styled.div`
  9. height: 44px;
  10. width: 44px;
  11. border-radius: 50%;
  12. background-color: #3498DB;
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. margin-right: 10px;
  17. cursor: pointer;
  18. `;
  19. export const FileIcon = styled.img`
  20. height: 26px;
  21. `;
  22. export const FileTitle = styled.div`
  23. font-size: 14px;
  24. font-weight: 600;
  25. `;
  26. export const DownloaderFile = styled.img`
  27. height: 16px;
  28. cursor: pointer;
  29. `;
  30. export const AudioPlayer = styled.audio`
  31. height: 30px;
  32. margin-top: 10px;
  33. width: 100%;
  34. `;