aboutsummaryrefslogtreecommitdiff
path: root/src/App.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.scss')
-rw-r--r--src/App.scss19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/App.scss b/src/App.scss
index 1b37ffe..f7fdf46 100644
--- a/src/App.scss
+++ b/src/App.scss
@@ -86,3 +86,22 @@ $selectionColor: rgba($primaryAccentColor, 0.9)
}
}
+.floating-wrapper {
+ height: 100vh;
+ width: 100vw;
+ box-sizing: border-box;
+ position: fixed;
+ top: 0;
+ left: 0;
+ background-color: rgba($backgroundColor, 0.3);
+ z-index: 5;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ backdrop-filter: blur(2px);
+ .floating-window {
+ width: 90%;
+ max-width: 1200px;
+ z-index: 6;
+ }
+}