fix: adjust maxHeight calculation in Playlist component for improved layout

This commit is contained in:
JSC
2025-08-09 21:20:16 +02:00
parent f65ed660ef
commit cc6fe234f1

View File

@@ -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 (
<div className="w-full">