From 1139da4da7f1bb0ee4a66d420e690beed36832c2 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sun, 4 Dec 2022 21:37:52 +0530 Subject: added notification system --- src/App.scss | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'src/App.scss') 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; + } +} -- cgit v1.2.3