diff options
| author | Jacky Zhao <[email protected]> | 2021-03-06 17:57:24 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-06 17:57:24 -0800 |
| commit | 5dd02b5c2acd7a4c408ce9ffa1d95e208d20bbc8 (patch) | |
| tree | 5a09bea364331dd0f41510153924065b815b702e /frontend/src/components/modals/shared.js | |
| parent | fix(typo): public api docs endpoint (diff) | |
| parent | fix password modal (diff) | |
| download | ctrl-v-5dd02b5c2acd7a4c408ce9ffa1d95e208d20bbc8.tar.xz ctrl-v-5dd02b5c2acd7a4c408ce9ffa1d95e208d20bbc8.zip | |
Merge pull request #70 from jackyzha0/visual-overhaul
Diffstat (limited to 'frontend/src/components/modals/shared.js')
| -rw-r--r-- | frontend/src/components/modals/shared.js | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/frontend/src/components/modals/shared.js b/frontend/src/components/modals/shared.js index d63be06..0336818 100644 --- a/frontend/src/components/modals/shared.js +++ b/frontend/src/components/modals/shared.js @@ -1,11 +1,19 @@ import styled from 'styled-components' -export const RightPad = styled.div` - margin-right: 3em; -` +export const modalStyles = { + content: { + top: '50%', + left: '50%', + transform: 'translate(-50%, -50%)', + width: '500px', + height: '250px', + border: '1px solid #11111188', + }, +}; -export const LeftPad = styled.div` - margin-left: 2em; +export const Form = styled.form` + margin: 2em; + margin-right: 3em; ` export const ModalHeader = styled.h3` |