aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/modals/shared.js
blob: 7c38dc2ab7faafb34d6868ebc09cdfefc25e3a4b (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
27
28
29
30
31
32
33
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`
  z-index: 999;
`

export const RightPad = styled.div`
    margin-right: 3em;
`

export const LeftPad = styled.div`
    margin-left: 2em;
`

export const ModalHeader = styled.h3`
    font-weight: 700
`

export const Padding = styled.span`
    content: ' ';
    margin-right: 2em;
`