feat: add padding to bottom of SequencerCanvas and TrackControls for improved layout

This commit is contained in:
JSC
2025-09-03 15:17:52 +02:00
parent 7e03189fc4
commit d7b1d97a28
2 changed files with 2 additions and 2 deletions

View File

@@ -280,7 +280,7 @@ export const SequencerCanvas = forwardRef<HTMLDivElement, SequencerCanvasProps>(
className="flex-1 min-h-0 min-w-0 overflow-auto"
onScroll={handleTracksScroll}
>
<div style={{ width: `${totalWidth}px`, minWidth: `${totalWidth}px` }}>
<div style={{ width: `${totalWidth}px`, minWidth: `${totalWidth}px`, paddingBottom: '52px' }}>
{tracks.map((track) => (
<TrackRow
key={track.id}