aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/common/dailog/FullPageDialog.css
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-06-30 18:36:47 +0800
committercrupest <crupest@outlook.com>2021-06-30 18:36:47 +0800
commit839daa0eac6fdbe84f45e8572e5ab07126b7d67c (patch)
tree08b68e8bfd6da2f8b4f51c4aaefbbd33c747e8d6 /FrontEnd/src/views/common/dailog/FullPageDialog.css
parent979ad8556be3576b09e318c9e85ae0138ecf11ec (diff)
downloadtimeline-839daa0eac6fdbe84f45e8572e5ab07126b7d67c.tar.gz
timeline-839daa0eac6fdbe84f45e8572e5ab07126b7d67c.tar.bz2
timeline-839daa0eac6fdbe84f45e8572e5ab07126b7d67c.zip
...
Diffstat (limited to 'FrontEnd/src/views/common/dailog/FullPageDialog.css')
-rw-r--r--FrontEnd/src/views/common/dailog/FullPageDialog.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/FrontEnd/src/views/common/dailog/FullPageDialog.css b/FrontEnd/src/views/common/dailog/FullPageDialog.css
new file mode 100644
index 00000000..65f16041
--- /dev/null
+++ b/FrontEnd/src/views/common/dailog/FullPageDialog.css
@@ -0,0 +1,26 @@
+.cru-full-page {
+ position: fixed;
+ z-index: 1030;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ background-color: white;
+ padding-top: 56px;
+}
+
+.cru-full-page-top-bar {
+ height: 56px;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ z-index: 1;
+ background-color: var(--cru-primary-color);
+ display: flex;
+ align-items: center;
+}
+
+.cru-full-page-content-container {
+ overflow: scroll;
+}