fix: reduce master mute button size to 32x32px

Changed button dimensions from h-10 w-10 to h-8 w-8 for
a more compact, 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:54 +01:00
parent b8ed648124
commit 4281c65ec1

View File

@@ -72,7 +72,7 @@ export function MasterControls({
<button
onClick={onMuteToggle}
className={cn(
'h-10 w-10 rounded-md flex items-center justify-center transition-all text-[11px] font-bold',
'h-8 w-8 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'