styled.ts 554 B

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