fix: reduce master mute button size to 40x40px

Changed button dimensions from h-12 w-12 to h-10 w-10 for
a more proportionate size.

🤖 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:24:18 +01:00
parent a447a81414
commit b8ed648124

View File

@@ -72,7 +72,7 @@ export function MasterControls({
<button
onClick={onMuteToggle}
className={cn(
'h-12 w-12 rounded-md flex items-center justify-center transition-all text-[11px] font-bold',
'h-10 w-10 rounded-md flex items-center justify-center transition-all text-[11px] font-bold',
isMuted
? 'bg-blue-500 text-white shadow-md shadow-blue-500/30'
: 'bg-card hover:bg-accent text-muted-foreground border border-border/50'