styled.ts 417 B

123456789101112131415161718192021
  1. import styled from 'styled-components';
  2. import { color } from '../../constants/style';
  3. export const ThumbnailWrapper = styled.div`
  4. display: flex;
  5. justify-content: center;
  6. align-items: center;
  7. `;
  8. export const Page = styled.div`
  9. margin-right: 20px;
  10. `;
  11. export const Thumbnail = styled.img`
  12. border: 1px solid ${color.black38};
  13. width: 100%;
  14. height: 100%;
  15. max-width: 146px;
  16. box-sizing: border-box;
  17. `;