a tool for shared writing and social publishing
0
fork

Configure Feed

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

don't set z-index on leaflet preview links

+4 -4
+4 -4
app/home/LeafletPreview.tsx
··· 47 47 <div className="rounded-lg hover:shadow-sm overflow-clip border border-border outline outline-2 outline-transparent outline-offset-1 hover:outline-border bg-bg-leaflet grow w-full h-full"> 48 48 {state === "normal" ? ( 49 49 <div className="relative w-full h-full"> 50 - <Link 51 - href={"/" + props.token.id} 52 - className={`no-underline hover:no-underline text-primary absolute inset-0 z-10 w-full h-full`} 53 - ></Link> 54 50 <ThemeBackgroundProvider entityID={root}> 55 51 <div className="leafletPreview grow shrink-0 h-full w-full px-2 pt-2 sm:px-3 sm:pt-3 flex items-end pointer-events-none"> 56 52 <div ··· 64 60 </div> 65 61 </div> 66 62 </ThemeBackgroundProvider> 63 + <Link 64 + href={"/" + props.token.id} 65 + className={`no-underline hover:no-underline text-primary absolute inset-0 w-full h-full`} 66 + ></Link> 67 67 </div> 68 68 ) : ( 69 69 <LeafletAreYouSure token={props.token} setState={setState} />