import styled from 'styled-components'; 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: ${({ theme }) => theme.colors.black05}; `; export const Content = styled.div` position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; justify-content: center; align-items: center; `;