From 12427efc7ecb17d235971e020bf1b1ae30fea0d1 Mon Sep 17 00:00:00 2001 From: Gavin McDonald Date: Thu, 12 Jun 2025 18:07:01 -0400 Subject: [PATCH] tweak see-through --- app/globals.css | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/app/globals.css b/app/globals.css index 2634013..27b91b9 100644 --- a/app/globals.css +++ b/app/globals.css @@ -42,14 +42,10 @@ body { } .see-through { - mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 1) 100%); + mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 1) 75%); mask-size: cover; mask-repeat: no-repeat; - -webkit-mask-image: radial-gradient( - circle at center, - rgba(0, 0, 0, 0) 25%, - rgba(0, 0, 0, 1) 100% - ); + -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 1) 75%); -webkit-mask-size: cover; -webkit-mask-repeat: no-repeat; }