Bump to 0.9.1
CI / Static checks (push) Successful in 1m7s
CI / Build and push image (push) Successful in 1m5s

Simplifies .bp-glass: drops the border and hover state, and applies
shadow-xl by default. Also zeroes the ring/border Card's own base
styles would otherwise still contribute, so glass surfaces render
with no border/ring/outline at all.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-01 20:11:12 +02:00
co-authored by Claude Sonnet 5
parent 44755c6e85
commit cf5353dfe4
2 changed files with 6 additions and 15 deletions
+5 -14
View File
@@ -181,23 +181,14 @@ body {
}
/* Console-module surface: translucent + blurred so the animated background
sweep shines through, with a hairline border and soft inset top highlight. */
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". */
.bp-glass {
@apply shadow-xl ring-0 border-0;
background: color-mix(in srgb, var(--card) 55%, transparent);
backdrop-filter: blur(20px) saturate(150%);
border: 1px solid var(--border);
box-shadow: inset 0 1px 0 color-mix(in srgb, var(--foreground) 8%, transparent);
transition:
border-color 0.2s ease,
box-shadow 0.2s ease,
background-color 0.2s ease;
}
.bp-glass:hover {
background: color-mix(in srgb, var(--card) 62%, transparent);
border-color: color-mix(in srgb, var(--primary) 45%, var(--border));
box-shadow:
inset 0 1px 0 color-mix(in srgb, var(--foreground) 10%, transparent),
0 10px 30px -14px rgba(0, 0, 0, 0.45);
}
/* Illuminated indicator dot - reused on connection status and per-actuator
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "sexy",
"version": "0.9.0",
"version": "0.9.1",
"private": true,
"scripts": {
"dev": "next dev",