diff options
| author | jackyzha0 <[email protected]> | 2021-03-06 15:44:54 -0800 |
|---|---|---|
| committer | jackyzha0 <[email protected]> | 2021-03-06 15:44:54 -0800 |
| commit | 37f05def31112563fd9d8f3b0c9bf8cebb607d86 (patch) | |
| tree | b050e9d49affc57765b91a2753e201ef707c5541 /frontend/src/components/modals/shared.js | |
| parent | code renderer virtualization, better visuals (diff) | |
| download | ctrl-v-37f05def31112563fd9d8f3b0c9bf8cebb607d86.tar.xz ctrl-v-37f05def31112563fd9d8f3b0c9bf8cebb607d86.zip | |
fix modal zindex
Diffstat (limited to 'frontend/src/components/modals/shared.js')
| -rw-r--r-- | frontend/src/components/modals/shared.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/frontend/src/components/modals/shared.js b/frontend/src/components/modals/shared.js index d63be06..7c38dc2 100644 --- a/frontend/src/components/modals/shared.js +++ b/frontend/src/components/modals/shared.js @@ -1,5 +1,20 @@ 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; ` |