a tool for shared writing and social publishing
0
fork

Configure Feed

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

little style fix

celine 6f9b4fa7 9ac25394

+4 -2
+4 -2
app/home/LeafletPreview.tsx
··· 104 104 )} 105 105 </div> 106 106 <div className="flex justify-between pt-1 shrink-0 w-full gap-2"> 107 - {(props.draft || props.published) && ( 107 + {props.draft || props.published ? ( 108 108 <div 109 - className={`text-xs bg-bg-page rounded-md px-0.5 italic ${props.published ? "font-bold text-tertiary" : "text-tertiary"}`} 109 + className={`text-xs container !border-none !w-fit px-0.5 italic ${props.published ? "font-bold text-tertiary" : "text-tertiary"}`} 110 110 > 111 111 {props.published ? "Published!" : "Draft"} 112 112 </div> 113 + ) : ( 114 + <div /> 113 115 )} 114 116 <LeafletOptions 115 117 leaflet={props.token}