From 4dcbb33feb71a9e4342fe875165ce4f1bb888413 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Fri, 30 Jun 2023 13:08:40 -0700 Subject: [PATCH] Add local transition to overlay --- components/common/Overlay/index.module.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/components/common/Overlay/index.module.scss b/components/common/Overlay/index.module.scss index 9824efce..b8282ca9 100644 --- a/components/common/Overlay/index.module.scss +++ b/components/common/Overlay/index.module.scss @@ -18,4 +18,14 @@ backdrop-filter: blur(5px) saturate(100%) brightness(80%) opacity(0); background: rgba(0, 0, 0, 0.6); } + + @keyframes fadeInFilter { + from { + backdrop-filter: blur(5px) saturate(100%) brightness(80%) opacity(0); + } + + to { + backdrop-filter: blur(5px) saturate(100%) brightness(80%) opacity(1); + } + } }