A decentralized music tracking and discovery platform built on AT Protocol 🎵 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
0

Configure Feed

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

fix(notifications): raise popup z-index above timeline chrome

The bell popover Body used zIndex: 2, so the feed's sticky pills (z-50)
and stories carousel (z-60) stacked over the dropdown. Bump it to 100 so
the popup sits above timeline chrome while staying below the modal tier
(dialogs at z-50/60, KeyboardShortcuts at z-1000).

+4 -1
+4 -1
apps/web/src/layouts/Navbar/NotificationBell.tsx
··· 373 373 overrides={{ 374 374 Body: { 375 375 style: { 376 - zIndex: 2, 376 + // Above the feed's sticky pills (z-50) and stories carousel (z-60) 377 + // so timeline chrome never covers the dropdown, but below the modal 378 + // tier (dialogs at z-50/60, KeyboardShortcuts at z-1000). 379 + zIndex: 100, 377 380 backgroundColor: "var(--color-background)", 378 381 }, 379 382 },