From cc6fe234f1a1ef0b6fc4dc2be6a6206d9189ce2a Mon Sep 17 00:00:00 2001 From: JSC Date: Sat, 9 Aug 2025 21:20:16 +0200 Subject: [PATCH] fix: adjust maxHeight calculation in Playlist component for improved layout --- src/components/player/Playlist.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/player/Playlist.tsx b/src/components/player/Playlist.tsx index 9f3607e..c8cda80 100644 --- a/src/components/player/Playlist.tsx +++ b/src/components/player/Playlist.tsx @@ -19,7 +19,7 @@ export function Playlist({ onTrackSelect, variant = 'normal' }: PlaylistProps) { - const maxHeight = variant === 'maximized' ? 'h-[calc(100vh-200px)]' : 'h-60' + const maxHeight = variant === 'maximized' ? 'h-[calc(100vh-230px)]' : 'h-60' return (