WIP. A little custom music server
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix sidebar

+4 -7
+1 -1
web/src/components/app-sidebar.tsx
··· 42 42 ]; 43 43 export function AppSidebar() { 44 44 return ( 45 - <Sidebar> 45 + <Sidebar className="min-w-[200px]" collapsible="none"> 46 46 <SidebarHeader /> 47 47 <SidebarContent> 48 48 <SidebarGroup>
+1 -1
web/src/components/audio-player.tsx
··· 57 57 return ( 58 58 <> 59 59 <Controls /> 60 - {src && <audio ref={ref} src={src} onPause={onPause} onPlay={onPlay} controls></audio>} 60 + <audio ref={ref} src={src} onPause={onPause} onPlay={onPlay}></audio> 61 61 </> 62 62 ); 63 63 }
+2 -5
web/src/pages/_layout.tsx
··· 15 15 <> 16 16 <meta name="description" content={data.description} /> 17 17 <link rel="icon" type="image/png" href={data.icon} /> 18 - <div className="font-['Geist'] pb-36 w-full overflow-x-hidden min-h-screen antialiased flex flex-col items-center h-auto"> 18 + <div className="font-['Geist'] pb-36 w-full overflow-x-hidden min-h-screen antialiased h-auto"> 19 19 <Providers> 20 20 <SidebarProvider> 21 21 <AppSidebar /> 22 - <main className=""> 23 - <SidebarTrigger /> 24 - {children} 25 - </main> 22 + <main className="w-full">{children}</main> 26 23 <AudioPlayer /> 27 24 </SidebarProvider> 28 25 </Providers>