From 7927038fb262dd41abcb88728d03ea8bd8ac3969 Mon Sep 17 00:00:00 2001 From: adrien Date: Tue, 6 Jan 2026 21:02:03 +0100 Subject: [PATCH] universal? double backdrop-filters --- css/common.css | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/css/common.css b/css/common.css index acbd936..0ef7e55 100644 --- a/css/common.css +++ b/css/common.css @@ -10,9 +10,15 @@ body { } @supports (backdrop-filter: blur()) { - /*.modal { + .modal::before { + content: ""; + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; backdrop-filter: blur(2px); - }*/ + } .modal-content { background-color: #2125294d; @@ -34,6 +40,7 @@ body { .modal-title { text-shadow: 0 0 8px var(--bs-light); + font-weight: 600; } #statsTable td, @@ -240,4 +247,4 @@ tr.cleared-line-animation { animation: game-over-animation; animation-timing-function: (0.4, 0, 0.6, 1); animation-duration: 2s; -} \ No newline at end of file +}