From 623284e8b59fa19d0ecaec9de4bb1728d4d91d80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Tue, 18 Nov 2025 18:59:31 +0100 Subject: [PATCH] fix: match automation controls width to track controls (w-48 = 192px) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed playhead marker alignment issue: - Changed automation controls from w-[180px] to w-48 (192px) - Now matches track controls panel width exactly - Playhead marker now aligns perfectly between waveform and automation Technical details: - Track controls use Tailwind's w-48 class (12rem = 192px) - Automation controls were using w-[180px] causing 12px misalignment - Both sidebars now use consistent w-48 sizing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- components/tracks/Track.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/tracks/Track.tsx b/components/tracks/Track.tsx index 536ca1d..8336e16 100644 --- a/components/tracks/Track.tsx +++ b/components/tracks/Track.tsx @@ -775,8 +775,8 @@ export function Track({ return selectedLane ? (
- {/* Left: Automation Controls (matching track controls width) */} -
+ {/* Left: Automation Controls (matching track controls width - w-48 = 192px) */} +
{/* Parameter selector dropdown */}