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 a few z indexs

+2 -2
+1 -1
src/components/buttons/EditButton.tsx
··· 43 43 <button 44 44 type="button" 45 45 onClick={onClick} 46 - className="fixed bottom-9 right-7 z-999 flex h-12 w-12 items-center justify-center rounded-full bg-background-secondary text-white border-2 border-green-500 transition-[background-color,transform,box-shadow] hover:bg-background-secondaryHover hover:scale-110 cursor-pointer" 46 + className="fixed bottom-9 right-7 z-50 flex h-12 w-12 items-center justify-center rounded-full bg-background-secondary text-white border-2 border-green-500 transition-[background-color,transform,box-shadow] hover:bg-background-secondaryHover hover:scale-110 cursor-pointer" 47 47 id={props.id ? `${props.id}-check` : undefined} // Optionally use a different id for this button 48 48 > 49 49 <Icon icon={Icons.CHECKMARK} />
+1 -1
src/utils/discoverContent.tsx
··· 991 991 992 992 {/* Dropdown options */} 993 993 {isDropdownOpen && ( 994 - <ul className="absolute top-full mb-1 rounded-lg bg-dropdown-background py-3 px-5 text-left text-white shadow-md border-2 border-gray-800 focus:outline-none tabbable cursor-pointer"> 994 + <ul className="absolute top-full z-50 mb-1 rounded-lg bg-dropdown-background py-3 px-5 text-left text-white shadow-md border-2 border-gray-800 focus:outline-none tabbable cursor-pointer"> 995 995 <li 996 996 className={`cursor-pointer p-2 hover:text-gray-300 ${selectedCategory === "movies" ? "font-bold" : ""}`} 997 997 onClick={() => handleCategoryChange("movies")}