styled.ts 528 B

12345678910111213141516171819202122232425262728
  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: 180px;
  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. width: auto;
  16. height: 100%;
  17. box-sizing: border-box;
  18. cursor: pointer;
  19. `;
  20. export const Loading = styled.div`
  21. width: 146px;
  22. height: 146px;
  23. background-color: white;
  24. `;