diff options
| author | Sam Wilkins <samwilkins333@gmail.com> | 2019-09-12 05:21:29 -0400 |
|---|---|---|
| committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-09-12 05:21:29 -0400 |
| commit | cbb016dd4bec4ce1367314717adf85640ae51c93 (patch) | |
| tree | 5ec6a588780eb5c5cc9c75619bd5656ee35d1a25 /src/client/views/MainViewModal.scss | |
| parent | 6cff2800f0aa2069787ff43831d18898c851bf3b (diff) | |
sharing workflow supported
Diffstat (limited to 'src/client/views/MainViewModal.scss')
| -rw-r--r-- | src/client/views/MainViewModal.scss | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/client/views/MainViewModal.scss b/src/client/views/MainViewModal.scss new file mode 100644 index 000000000..f5a9ee76c --- /dev/null +++ b/src/client/views/MainViewModal.scss @@ -0,0 +1,25 @@ +.dialogue-box { + position: absolute; + z-index: 1000; + text-align: center; + justify-content: center; + align-self: center; + align-content: center; + padding: 20px; + background: gainsboro; + border-radius: 10px; + border: 3px solid black; + box-shadow: #00000044 5px 5px 10px; + transform: translate(-50%, -50%); + top: 50%; + left: 50%; + transition: 0.5s all ease; +} + +.overlay { + width: 100%; + height: 100%; + position: absolute; + z-index: 999; + transition: 0.5s all ease; +}
\ No newline at end of file |
