a tool for shared writing and social publishing
0
fork

Configure Feed

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

make empty part of footer transparent to clicks

+5 -2
+5 -2
components/DesktopFooter.tsx
··· 8 8 let focusedBlockParent = 9 9 focusedTextBlock?.type === "card" ? null : focusedTextBlock?.parent; 10 10 return ( 11 - <Media mobile={false} className="absolute bottom-4 w-full z-10 "> 11 + <Media 12 + mobile={false} 13 + className="absolute bottom-4 w-full z-10 pointer-events-none" 14 + > 12 15 {focusedTextBlock && 13 16 focusedTextBlock.type === "block" && 14 17 focusedBlockParent === props.parentID && ( 15 - <div className="w-fit mx-auto py-1 px-4 flex gap-2 items-center bg-bg-card border border-border rounded-full shadow-sm"> 18 + <div className="pointer-events-auto w-fit mx-auto py-1 px-4 flex gap-2 items-center bg-bg-card border border-border rounded-full shadow-sm"> 16 19 <TextToolbar /> 17 20 </div> 18 21 )}