diff options
author | crupest <crupest@outlook.com> | 2021-06-29 23:50:55 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-29 23:50:55 +0800 |
commit | de7df0e4fb38863b830a104a5a38d0e5247679f8 (patch) | |
tree | 2c758dcf807bc8aa876152b5afc7aa03c61295ec /FrontEnd/src/views/common/dailog/Dialog.css | |
parent | 5c0dc840fa4af43fdb7ae5f93f462cd63c74bc6d (diff) | |
download | timeline-de7df0e4fb38863b830a104a5a38d0e5247679f8.tar.gz timeline-de7df0e4fb38863b830a104a5a38d0e5247679f8.tar.bz2 timeline-de7df0e4fb38863b830a104a5a38d0e5247679f8.zip |
...
Diffstat (limited to 'FrontEnd/src/views/common/dailog/Dialog.css')
-rw-r--r-- | FrontEnd/src/views/common/dailog/Dialog.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/FrontEnd/src/views/common/dailog/Dialog.css b/FrontEnd/src/views/common/dailog/Dialog.css index e69de29b..abce04fd 100644 --- a/FrontEnd/src/views/common/dailog/Dialog.css +++ b/FrontEnd/src/views/common/dailog/Dialog.css @@ -0,0 +1,22 @@ +.cru-dialog-overlay {
+ position: fixed;
+ z-index: 1040;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ background-color: rgba(255, 255, 255, 0.92);
+
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.cru-dialog-container {
+ max-width: 100%;
+
+ border: var(--cru-primary-color) 1px solid;
+ border-radius: 5px;
+ padding: 1.5em;
+ background-color: white;
+}
|