fix styling on web titlebar style

This commit is contained in:
jeffvli 2025-06-24 20:14:15 -07:00
parent c84dd648ea
commit 8598313d12
4 changed files with 29 additions and 36 deletions

View file

@ -4,12 +4,10 @@ import { useRef } from 'react';
import { PlayQueueListControls } from './play-queue-list-controls';
import { PageHeader } from '/@/renderer/components/page-header/page-header';
import { VirtualGridContainer } from '/@/renderer/components/virtual-grid';
import { PlayQueue } from '/@/renderer/features/now-playing/components/play-queue';
import { useWindowSettings } from '/@/renderer/store/settings.store';
import { Box } from '/@/shared/components/box/box';
import { Stack } from '/@/shared/components/stack/stack';
import { Song } from '/@/shared/types/domain-types';
import { Platform } from '/@/shared/types/types';
@ -20,14 +18,9 @@ export const SidebarPlayQueue = () => {
const isWeb = windowBarStyle === Platform.WEB;
return (
<VirtualGridContainer>
{isWeb && (
<Stack mr={isWeb ? '130px' : undefined}>
<PageHeader />
</Stack>
)}
<Box
display={!isWeb ? 'flex' : undefined}
h={!isWeb ? '65px' : undefined}
h="65px"
>
<PlayQueueListControls
tableRef={queueRef}