123456789101112131415161718192021 |
- import styled from 'styled-components';
- import { color } from '../../constants/style';
- export const ThumbnailWrapper = styled.div`
- display: flex;
- justify-content: center;
- align-items: center;
- `;
- export const Page = styled.div`
- margin-right: 20px;
- `;
- export const Thumbnail = styled.img`
- border: 1px solid ${color.black38};
- width: 100%;
- height: 100%;
- max-width: 146px;
- box-sizing: border-box;
- `;
|