Adjust playqueue styles

This commit is contained in:
jeffvli 2022-12-28 01:29:37 -08:00
parent 7500046ac6
commit e5ad41b9da
3 changed files with 20 additions and 8 deletions

View file

@ -1,6 +1,6 @@
import { useRef } from 'react';
import type { AgGridReact as AgGridReactType } from '@ag-grid-community/react/lib/agGridReact';
import { Stack } from '@mantine/core';
import { Box, Stack } from '@mantine/core';
import { PlayQueue } from '/@/renderer/features/now-playing/components/play-queue';
import { PlayQueueListControls } from './play-queue-list-controls';
import { Song } from '/@/renderer/api/types';
@ -10,10 +10,18 @@ export const SidebarPlayQueue = () => {
return (
<Stack
pb="1rem"
pt="2.5rem"
sx={{ height: '100%' }}
h="100%"
spacing={0}
sx={{ borderLeft: '2px solid var(--generic-border-color)' }}
>
<Box
h="50px"
mr="160px"
sx={{
'-webkit-app-region': 'drag',
zIndex: -1,
}}
/>
<PlayQueue
ref={queueRef}
type="sideQueue"