From fa99debabdc5fe9f71ed6959e09761bf572eacb3 Mon Sep 17 00:00:00 2001 From: cvennevik Date: Mon, 26 Feb 2024 19:37:14 +0100 Subject: [PATCH] (performance) Remove backdrop-filter blur and saturate effects from modals --- src/components/modal.css | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/components/modal.css b/src/components/modal.css index afc4a1a8..e2b2c638 100644 --- a/src/components/modal.css +++ b/src/components/modal.css @@ -9,7 +9,6 @@ justify-content: center; align-items: center; background-color: var(--backdrop-color); - backdrop-filter: blur(24px); animation: appear 0.5s var(--timing-function) both; } #modal-container > div .sheet { @@ -19,7 +18,3 @@ #modal-container > div:has(~ div) .sheet { transform: scale(0.975); } - -#modal-container > .light { - backdrop-filter: saturate(0.75); -}