2 Commits
Author SHA1 Message Date
valknarandClaude Sonnet 5 48c31388db Bump to 0.9.3
CI / Build and push image (push) Successful in 1m3s
CI / Static checks (push) Successful in 1m6s
- .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 <noreply@anthropic.com>
2026-09-01 21:32:25 +02:00
valknarandClaude Sonnet 5 68b0e4d0bd Bump to 0.9.2
CI / Build and push image (push) Successful in 1m4s
CI / Static checks (push) Successful in 1m4s
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 <noreply@anthropic.com>
2026-09-01 21:18:31 +02:00
3 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ export default async function DashboardPage() {
return ( return (
<div className="flex flex-col gap-8"> <div className="flex flex-col gap-8">
<Card className="bp-glass overflow-hidden"> <Card className="bp-glass overflow-hidden">
<CardContent className="flex flex-col items-start gap-4 py-8"> <CardContent className="flex flex-col items-start gap-4 py-4">
<BrandMark size={48} animated className="rounded-[9px]" /> <BrandMark size={48} animated className="rounded-[9px]" />
<h1 className="font-heading text-3xl font-semibold">Welcome back</h1> <h1 className="font-heading text-3xl font-semibold">Welcome back</h1>
<p className="max-w-xl text-sm text-muted-foreground"> <p className="max-w-xl text-sm text-muted-foreground">
+6 -5
View File
@@ -181,12 +181,13 @@ body {
} }
/* Console-module surface: translucent + blurred so the animated background /* Console-module surface: translucent + blurred so the animated background
sweep shines through. ring-0 zeroes out Card's own default sweep shines through. Card's own default ring (components/ui/card.tsx:
`ring-1 ring-foreground/10` (components/ui/card.tsx) - shadow-xl's `ring-1 ring-foreground/10`) still shows - ring-accent recolors it to the
box-shadow formula reads the same --tw-ring-shadow custom property, so accent token instead of resetting it. border-accent is currently a no-op
without this the ring bleeds through regardless of shadow-xl "winning". */ (neither Card nor this rule sets a border-width utility to give it a
border to color). */
.bp-glass { .bp-glass {
@apply shadow-xl ring-0 border-0; @apply shadow-xs ring-accent border-accent;
background: color-mix(in srgb, var(--card) 55%, transparent); background: color-mix(in srgb, var(--card) 55%, transparent);
backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%);
} }
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "sexy", "name": "sexy",
"version": "0.9.1", "version": "0.9.3",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",