diff options
| author | Ryan Mehri <[email protected]> | 2020-05-14 12:55:40 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-14 12:55:40 -0600 |
| commit | fcadb1bf21403f357e48542fd94c78828044e07b (patch) | |
| tree | 421ab164e447c63cb163aff4f081072385d8ca4f /frontend/src/components/modals/shared.js | |
| parent | Merge pull request #20 from jackyzha0/pass-rendering (diff) | |
| parent | on new paste modal (diff) | |
| download | ctrl-v-fcadb1bf21403f357e48542fd94c78828044e07b.tar.xz ctrl-v-fcadb1bf21403f357e48542fd94c78828044e07b.zip | |
Merge pull request #22 from jackyzha0/paste-modal
on new paste modal
Diffstat (limited to 'frontend/src/components/modals/shared.js')
| -rw-r--r-- | frontend/src/components/modals/shared.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/frontend/src/components/modals/shared.js b/frontend/src/components/modals/shared.js new file mode 100644 index 0000000..9359436 --- /dev/null +++ b/frontend/src/components/modals/shared.js @@ -0,0 +1,13 @@ +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 +` |