a tool for shared writing and social publishing
0
fork

Configure Feed

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

oops forgot to save before i pushed

celine b8c986dd 5708b696

+3 -3
+3 -3
components/Blocks/index.tsx
··· 368 368 if (children.length > 0) 369 369 useUIState.getState().toggleFold(props.value); 370 370 }} 371 - className="listMarker pl-1 pr-2 sm:pr-3" 371 + className={`listMarker group/list-marker pl-1 pr-2 sm:pr-3 ${children.length > 0 ? "cursor-pointer" : "cursor-default"}`} 372 372 > 373 373 <div 374 374 className="h-full shrink-0 flex justify-end relative" ··· 381 381 }} 382 382 > 383 383 <div 384 - className={`absolute h-[5px] w-[5px] rounded-full bg-secondary shrink-0 right-0 385 - ${folded ? " outline outline-1 outline-secondary outline-offset-1" : ""} 384 + className={`absolute h-[5px] w-[5px] rounded-full bg-secondary shrink-0 right-0 outline outline-1 outline-offset-1 385 + ${folded ? "outline-secondary" : ` ${children.length > 0 ? "group-hover/list-marker:outline-secondary outline-transparent" : "outline-transparent"}`} 386 386 ${props.first ? "mt-1 sm:mt-2" : ""} 387 387 ${ 388 388 props.type === "heading"