fix: increase analyzer size to 192px width with proportional height

Increased analyzer dimensions from 160px to 192px width
and from 300px to 360px minimum height for better visibility.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-19 01:43:45 +01:00
parent d0601b2b36
commit e4b3433cf3

View File

@@ -1067,7 +1067,7 @@ export function AudioEditor() {
</div>
{/* Analyzer Toggle */}
<div className="flex gap-1 bg-muted/20 border border-border/50 rounded-md p-1 max-w-[160px] mx-auto">
<div className="flex gap-1 bg-muted/20 border border-border/50 rounded-md p-1 max-w-[192px] mx-auto">
<button
onClick={() => setAnalyzerView('frequency')}
className={`flex-1 px-2 py-1 rounded text-[10px] font-bold uppercase tracking-wider transition-all ${
@@ -1091,8 +1091,8 @@ export function AudioEditor() {
</div>
{/* Analyzer Display */}
<div className="flex-1 min-h-[300px] flex items-start justify-center">
<div className="w-[160px]">
<div className="flex-1 min-h-[360px] flex items-start justify-center">
<div className="w-[192px]">
{analyzerView === 'frequency' ? (
<FrequencyAnalyzer analyserNode={masterAnalyser} />
) : (