From 48c31388dbebeb0be47013297eed3d376712880e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Tue, 1 Sep 2026 21:32:25 +0200 Subject: [PATCH] Bump to 0.9.3 - .bp-glass: recolors Card's default ring to the accent token (ring-accent) instead of leaving it at foreground/10; border-accent is currently a no-op since nothing sets a border-width utility - Dashboard hero card: tightens vertical padding (py-8 -> py-4) Co-Authored-By: Claude Sonnet 5 --- app/(app)/page.tsx | 2 +- app/globals.css | 11 ++++++----- package.json | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/app/(app)/page.tsx b/app/(app)/page.tsx index 7a8eb1d..47f8ae0 100644 --- a/app/(app)/page.tsx +++ b/app/(app)/page.tsx @@ -18,7 +18,7 @@ export default async function DashboardPage() { return (
- +

Welcome back

diff --git a/app/globals.css b/app/globals.css index f83d1e9..fa66188 100644 --- a/app/globals.css +++ b/app/globals.css @@ -181,12 +181,13 @@ body { } /* Console-module surface: translucent + blurred so the animated background - 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. */ + sweep shines through. Card's own default ring (components/ui/card.tsx: + `ring-1 ring-foreground/10`) still shows - ring-accent recolors it to the + accent token instead of resetting it. border-accent is currently a no-op + (neither Card nor this rule sets a border-width utility to give it a + border to color). */ .bp-glass { - @apply shadow-xs; + @apply shadow-xs ring-accent border-accent; background: color-mix(in srgb, var(--card) 55%, transparent); backdrop-filter: blur(20px) saturate(150%); } diff --git a/package.json b/package.json index 5eb84cc..4e79dfd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sexy", - "version": "0.9.2", + "version": "0.9.3", "private": true, "scripts": { "dev": "next dev",