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 z index issues

Pas df2ec49e d756108c

+3 -3
+2 -2
src/components/form/Dropdown.tsx
··· 33 33 {customButton ? ( 34 34 <Listbox.Button as={Fragment}>{customButton}</Listbox.Button> 35 35 ) : ( 36 - <Listbox.Button className="relative z-[101] w-full rounded-lg bg-dropdown-background hover:bg-dropdown-hoverBackground py-3 pl-3 pr-10 text-left text-white shadow-md focus:outline-none tabbable cursor-pointer"> 36 + <Listbox.Button className="relative z-[30] w-full rounded-lg bg-dropdown-background hover:bg-dropdown-hoverBackground py-3 pl-3 pr-10 text-left text-white shadow-md focus:outline-none tabbable cursor-pointer"> 37 37 <span className="flex gap-4 items-center truncate"> 38 38 {props.selectedItem.leftIcon 39 39 ? props.selectedItem.leftIcon ··· 51 51 <Transition 52 52 animation="slide-down" 53 53 show={open} 54 - className={`absolute z-[102] min-w-[20px] w-fit max-h-60 overflow-auto rounded-lg bg-dropdown-background py-1 text-white shadow-lg ring-1 ring-black ring-opacity-5 scrollbar-thin scrollbar-track-background-secondary scrollbar-thumb-type-secondary focus:outline-none ${ 54 + className={`absolute z-[40] min-w-[20px] w-fit max-h-60 overflow-auto rounded-lg bg-dropdown-background py-1 text-white shadow-lg ring-1 ring-black ring-opacity-5 scrollbar-thin scrollbar-track-background-secondary scrollbar-thumb-type-secondary focus:outline-none ${ 55 55 direction === "up" ? "bottom-full mb-4" : "top-full mt-1" 56 56 } ${props.side === "right" ? "right-0" : "left-0"}`} 57 57 >
+1 -1
src/pages/Settings.tsx
··· 79 79 <WideContainer ultraWide classNames="overflow-visible"> 80 80 {/* Floating Search Bar - starts in sticky state */} 81 81 <div 82 - className="fixed left-0 right-0 z-[500]" 82 + className="fixed left-0 right-0 z-50" 83 83 style={{ 84 84 top: `${stickyOffset}px`, 85 85 }}