aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/modals/shared.js
blob: d63be063540353a111f14a5cf26d18432a366901 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import styled from 'styled-components'

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;
`