feat: shift faders 8px to the right
- Added ml-2 (8px left margin) to TrackFader - Added ml-2 (8px left margin) to MasterFader - Both faders with their labels now shifted right for better alignment 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -80,7 +80,7 @@ export function MasterFader({
|
||||
}, [isDragging, handleMouseMove, handleMouseUp]);
|
||||
|
||||
return (
|
||||
<div className={cn('flex gap-3', className)}>
|
||||
<div className={cn('flex gap-3 ml-2', className)}>
|
||||
{/* dB Labels (Left) */}
|
||||
<div className="flex flex-col justify-between text-[10px] font-mono text-muted-foreground py-1">
|
||||
<span>0</span>
|
||||
|
||||
@@ -82,7 +82,7 @@ export function TrackFader({
|
||||
}, [isDragging, handleMouseMove, handleMouseUp]);
|
||||
|
||||
return (
|
||||
<div className={cn('flex gap-2', className)}>
|
||||
<div className={cn('flex gap-2 ml-2', className)}>
|
||||
{/* dB Labels (Left) */}
|
||||
<div className="flex flex-col justify-between text-[9px] font-mono text-muted-foreground py-1">
|
||||
<span>0</span>
|
||||
|
||||
Reference in New Issue
Block a user