MessageImgItem.style.js 309 B

1234567891011121314151617
  1. import styled from "styled-components";
  2. export const MessageImgItemWrap = styled.div`
  3. position: relative;
  4. `;
  5. export const ImageItem = styled.img`
  6. width: 100%;
  7. max-height: 140px;
  8. `;
  9. export const DownloadImg = styled.img`
  10. position: absolute;
  11. top: 0;
  12. right: 0;
  13. cursor: pointer;
  14. `;