From 68bf299296980b774d7ac54c1605a18f9bdc828e Mon Sep 17 00:00:00 2001 From: kami Date: Mon, 3 Aug 2026 14:30:53 +0400 Subject: [PATCH] style(vibe): center the ambient profile aura --- frontend/src/components/VibeAura.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/VibeAura.tsx b/frontend/src/components/VibeAura.tsx index 52eda5a..8f4bffb 100644 --- a/frontend/src/components/VibeAura.tsx +++ b/frontend/src/components/VibeAura.tsx @@ -28,12 +28,13 @@ export function VibeAura({ profile, ambient = false }: { profile: VibeProfile; a '--vibe-pulse': `${(4.8 - energy * 2.3).toFixed(2)}s`, '--vibe-orbit': `${(11 - energy * 4).toFixed(2)}s`, '--vibe-scale': String((0.9 + energy * 0.16).toFixed(2)), + '--vibe-core-opacity': ambient ? '0.38' : '1', } as CSSProperties; return (
-
+