From 68b0e4d0bdb12d6f0a93fd6763154f6eae4bf298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Tue, 1 Sep 2026 21:18:31 +0200 Subject: [PATCH] Bump to 0.9.2 Lightens .bp-glass's shadow to shadow-xs (from shadow-xl). Card's own default ring is no longer neutralized here, so it shows through on glass surfaces again. Co-Authored-By: Claude Sonnet 5 --- app/globals.css | 10 +++++----- package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/globals.css b/app/globals.css index 6bfd9fc..f83d1e9 100644 --- a/app/globals.css +++ b/app/globals.css @@ -181,12 +181,12 @@ body { } /* Console-module surface: translucent + blurred so the animated background - sweep shines through. ring-0 zeroes out Card's own default - `ring-1 ring-foreground/10` (components/ui/card.tsx) - shadow-xl's - box-shadow formula reads the same --tw-ring-shadow custom property, so - without this the ring bleeds through regardless of shadow-xl "winning". */ + sweep shines through. Card's own default `ring-1 ring-foreground/10` + (components/ui/card.tsx) still shows through here - shadow-xs's box-shadow + formula reads the same --tw-ring-shadow custom property Card sets, and + nothing here resets it. */ .bp-glass { - @apply shadow-xl ring-0 border-0; + @apply shadow-xs; background: color-mix(in srgb, var(--card) 55%, transparent); backdrop-filter: blur(20px) saturate(150%); } diff --git a/package.json b/package.json index a75ea2e..5eb84cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sexy", - "version": "0.9.1", + "version": "0.9.2", "private": true, "scripts": { "dev": "next dev",