123456789101112131415161718192021222324252627282930313233 |
- import styled from 'styled-components';
- import { color } from '../../constants/style';
- export const Container = styled.div`
- position: fixed;
- z-index: 100;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- `;
- export const Blanket = styled.div`
- z-index: -1;
- position: fixed;
- right: 0;
- bottom: 0;
- top: 0;
- left: 0;
- background-color: ${color.black05};
- `;
- export const Content = styled.div`
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- `;
|