From 50104839375bac02bf1413ddb595792969267f45 Mon Sep 17 00:00:00 2001 From: Pranav Phadke Date: Tue, 21 Nov 2023 00:30:42 -0500 Subject: [PATCH] bug: notifications sign up modal has no background transparency --- styles/_Modal.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/styles/_Modal.scss b/styles/_Modal.scss index a73cd6eb..90d30107 100644 --- a/styles/_Modal.scss +++ b/styles/_Modal.scss @@ -7,7 +7,8 @@ height: 100vh; width: 100vw; z-index: 999999; - background: Colors.$Light_Grey; + // This is Colors.Light_Grey with alpha value of 0.7 + background-color: #d1d3d7b3; display: flex; align-items: center; justify-content: center;