fix: reduce background opacity to 50% for subtler appearance

Changed background from bg-card to bg-card/50 for both TrackControls
and MasterControls to make the border more prominent.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-19 01:10:33 +01:00
parent 5c85914974
commit 9a161bbe42
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ export function MasterControls({
}: MasterControlsProps) {
return (
<div className={cn(
'flex flex-col items-center gap-3 px-4 py-3 bg-muted/20 border-2 border-accent/50 rounded-lg',
'flex flex-col items-center gap-3 px-4 py-3 bg-card/50 border-2 border-accent/50 rounded-lg',
className
)}>
{/* Master Label */}

View File

@@ -57,7 +57,7 @@ export function TrackControls({
}: TrackControlsProps) {
return (
<div className={cn(
'flex flex-col items-center justify-between h-full px-3 py-2 bg-muted/20 border-2 border-accent/50 rounded-lg',
'flex flex-col items-center justify-between h-full px-3 py-2 bg-card/50 border-2 border-accent/50 rounded-lg',
className
)}>
{/* Pan Control - Top */}