mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 02:43:33 +00:00
Adjust playqueue styles
This commit is contained in:
parent
7500046ac6
commit
e5ad41b9da
3 changed files with 20 additions and 8 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue