import styled from 'styled-components'; import { Card } from '../Card'; import { OverlayBase } from '../styles'; export const Overlay = styled(OverlayBase)` z-index: 9500; `; export const Content = styled(Card)` overflow-y: auto; width: 100%; max-width: 272px; display: flex; flex-direction: column; align-items: center; padding: 24px; img, svg { width: 56px; margin-top: 8px; margin-bottom: 32px; } h6 { margin-bottom: 8px; text-align: center; } p { margin-bottom: 32px; text-align: center; color: ${({ theme }) => theme.colors.gray[11]}; } `;