blob: 0336818f275c9cfb8bf883bf36b8eac270c028c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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
`
export const Padding = styled.span`
content: ' ';
margin-right: 2em;
`
|