1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import styled from 'styled-components' export const modalStyles = { content: { top: '50%', left: '50%', transform: 'translate(-50%, -50%)', width: '500px', height: '250px', border: '1px solid #11111188', }, }; export const Form = styled.form` margin: 2em; margin-right: 3em; ` export const ModalHeader = styled.h3` font-weight: 700 `