styled.ts 569 B

123456789101112131415161718192021222324252627282930
  1. import styled from 'styled-components';
  2. export const Wrapper = styled.div`
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. margin: 20px 0;
  7. width: 230px;
  8. height: 180px;
  9. `;
  10. export const PageNum = styled.div`
  11. margin-right: 20px;
  12. `;
  13. export const Img = styled.img`
  14. border: 1px solid ${({ theme }) => theme.colors.black38};
  15. max-width: 200px;
  16. max-height: 180px;
  17. width: auto;
  18. height: auto;
  19. box-sizing: border-box;
  20. cursor: pointer;
  21. `;
  22. export const Loading = styled.div`
  23. width: 146px;
  24. height: 146px;
  25. background-color: white;
  26. `;