From f830640732e72f12fb43d877a98f842d60c67230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Wed, 19 Nov 2025 00:40:34 +0100 Subject: [PATCH] feat: shift faders 8px to the right MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- components/controls/MasterFader.tsx | 2 +- components/tracks/TrackFader.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/controls/MasterFader.tsx b/components/controls/MasterFader.tsx index c939f14..544f0c9 100644 --- a/components/controls/MasterFader.tsx +++ b/components/controls/MasterFader.tsx @@ -80,7 +80,7 @@ export function MasterFader({ }, [isDragging, handleMouseMove, handleMouseUp]); return ( -
+
{/* dB Labels (Left) */}
0 diff --git a/components/tracks/TrackFader.tsx b/components/tracks/TrackFader.tsx index fcca805..734b516 100644 --- a/components/tracks/TrackFader.tsx +++ b/components/tracks/TrackFader.tsx @@ -82,7 +82,7 @@ export function TrackFader({ }, [isDragging, handleMouseMove, handleMouseUp]); return ( -
+
{/* dB Labels (Left) */}
0