pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

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

fix pause overlay preventing clicks

Pas 7a31c721 61c4bf50

+3 -5
+3 -5
src/components/player/overlays/PauseOverlay.tsx
··· 51 51 52 52 return ( 53 53 <div 54 - className={`absolute inset-0 z-[60] flex items-center bg-black/60 transition-opacity duration-500 ${ 55 - shouldShow 56 - ? "opacity-100 pointer-events-auto" 57 - : "opacity-0 pointer-events-none" 54 + className={`absolute inset-0 z-[60] flex items-center bg-black/60 transition-opacity duration-500 pointer-events-none ${ 55 + shouldShow ? "opacity-100" : "opacity-0" 58 56 }`} 59 57 > 60 - <div className="ml-16 max-w-2xl p-8 pointer-events-auto"> 58 + <div className="ml-16 max-w-2xl p-8"> 61 59 {logoUrl ? ( 62 60 <img 63 61 src={logoUrl}