fix: increase fader horizontal spacing (12px track, 16px master)

Increased margin-left values for better visibility:
- TrackFader: 8px → 12px
- MasterFader: 12px → 16px

🤖 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:04:43 +01:00
parent 628c544511
commit 9140110589
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ export function MasterFader({
}, [isDragging, handleMouseMove, handleMouseUp]);
return (
<div className={cn('flex gap-3', className)} style={{ marginLeft: '12px' }}>
<div className={cn('flex gap-3', className)} style={{ marginLeft: '16px' }}>
{/* dB Labels (Left) */}
<div className="flex flex-col justify-between text-[10px] font-mono text-muted-foreground py-1">
<span>0</span>

View File

@@ -82,7 +82,7 @@ export function TrackFader({
}, [isDragging, handleMouseMove, handleMouseUp]);
return (
<div className={cn('flex gap-2', className)} style={{ marginLeft: '8px' }}>
<div className={cn('flex gap-2', className)} style={{ marginLeft: '12px' }}>
{/* dB Labels (Left) */}
<div className="flex flex-col justify-between text-[9px] font-mono text-muted-foreground py-1">
<span>0</span>