diff --git a/components/tracks/TrackControls.tsx b/components/tracks/TrackControls.tsx index 1c3bdb1..41d1f25 100644 --- a/components/tracks/TrackControls.tsx +++ b/components/tracks/TrackControls.tsx @@ -56,8 +56,8 @@ export function TrackControls({ className, }: TrackControlsProps) { return ( -
- {/* Pan Control - Centered */} +
+ {/* Pan Control - Top */}
- {/* Track Fader with Integrated Meters - Centered */} -
+ {/* Track Fader - Center (vertically centered in remaining space) */} +
- {/* Control Buttons Row 1: R/S/M */} -
- {/* Record Arm */} - {onRecordToggle && ( - - )} - - {/* Solo Button */} - {onSoloToggle && ( - - )} - - {/* Mute Button */} - )} - title="Mute track" - > - M - -
- {/* Control Buttons Row 2: A/E */} -
- {/* Automation Toggle */} - {onAutomationToggle && ( + {/* Solo Button */} + {onSoloToggle && ( + + )} + + {/* Mute Button */} - )} +
- {/* Effects Button */} - {onEffectsClick && ( - - )} + {/* Control Buttons Row 2: A/E */} +
+ {/* Automation Toggle */} + {onAutomationToggle && ( + + )} + + {/* Effects Button */} + {onEffectsClick && ( + + )} +
);