From d0601b2b363adf815f3f17b2dc93fea9d7e9608d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Wed, 19 Nov 2025 01:42:25 +0100 Subject: [PATCH] fix: make analyzer cards match master fader width MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Constrained analyzer components to 160px width to match the MasterControls card width, creating better visual alignment in the master column. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- components/editor/AudioEditor.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/components/editor/AudioEditor.tsx b/components/editor/AudioEditor.tsx index 39c4240..15efa6d 100644 --- a/components/editor/AudioEditor.tsx +++ b/components/editor/AudioEditor.tsx @@ -1067,7 +1067,7 @@ export function AudioEditor() { {/* Analyzer Toggle */} -
+
{/* Analyzer Display */} -
- {analyzerView === 'frequency' ? ( - - ) : ( - - )} +
+
+ {analyzerView === 'frequency' ? ( + + ) : ( + + )} +