Fix light mode Play button gradient border visibility

- Change gradient from white/light-gray to darker gray tones
- Old: rgba(255,255,255,0.8) → rgba(200,200,200,0.3) (too subtle)
- New: rgba(100,100,100,0.4) → rgba(50,50,50,0.2) (visible)
- Creates subtle dark outline that's visible on white button
- Matches design system glassmorphism with proper gradient borders

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Dorian
2026-02-03 00:08:00 +00:00
parent d4b2d67a0c
commit db6d058a49

View File

@@ -406,7 +406,7 @@ onUnmounted(() => {
inset: 0;
border-radius: inherit;
padding: 2px;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(200, 200, 200, 0.3));
background: linear-gradient(135deg, rgba(100, 100, 100, 0.4), rgba(50, 50, 50, 0.2));
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);