fix: add bottom padding to track controls to compensate for scrollbar

Added pb-3 (padding-bottom) to the track controls column to account
for the horizontal scrollbar height in the waveforms column, ensuring
track controls stay perfectly aligned with their waveforms.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-19 11:13:55 +01:00
parent 39ea599f18
commit e0b878daad

View File

@@ -100,7 +100,7 @@ export function TrackList({
{/* Track List - Two Column Layout */}
<div className="flex-1 flex overflow-hidden">
{/* Left Column: Track Controls (Fixed Width, No Scroll - synced with waveforms) */}
<div ref={controlsScrollRef} className="w-48 flex-shrink-0 overflow-hidden">
<div ref={controlsScrollRef} className="w-48 flex-shrink-0 overflow-hidden pb-3">
{tracks.map((track) => (
<Track
key={track.id}