fix queue height when using web windowbar style (#2068)

This commit is contained in:
jeffvli
2026-05-28 00:45:23 -07:00
parent a2cdce66bc
commit a56253cd3a
@@ -214,7 +214,14 @@ export const SidebarPlayQueue = () => {
))}
</SplitPane>
) : (
<Stack gap={0} h="100%" w="100%">
<Stack
gap={0}
style={{
flex: 1,
minHeight: 0,
}}
w="100%"
>
<PlayQueueListControls
handleSearch={setSearch}
searchTerm={search}