a tool for shared writing and social publishing
0
fork

Configure Feed

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

small style tweaks to published metadata

celine 00314a77 dd9747f3

+6 -6
+6 -6
components/Pages/PublicationMetadata.tsx
··· 42 42 43 43 return ( 44 44 <div 45 - className={`flex flex-col px-3 sm:px-4 pb-4 sm:pb-6 ${cardBorderHidden ? "sm:pt-4 pt-0" : "sm:pt-6 pt-2"}`} 45 + className={`flex flex-col px-3 sm:px-4 pb-4 sm:pb-6 ${cardBorderHidden ? "sm:pt-6 pt-0" : "sm:pt-4 pt-2"}`} 46 46 > 47 47 <Link 48 48 href={`/lish/${identity?.resolved_did?.alsoKnownAs?.[0].slice(5)}/${pub.publications.name}`} ··· 51 51 {pub.publications?.name} 52 52 </Link> 53 53 <Input 54 - className="text-xl font-bold outline-none" 54 + className="text-xl font-bold outline-none bg-transparent" 55 55 value={titleState} 56 56 onChange={(e) => { 57 57 setTitleState(e.currentTarget.value); ··· 60 60 /> 61 61 <textarea 62 62 rows={2} 63 - placeholder="description (optional)" 64 - className="italic text-secondary outline-none" 63 + placeholder="add an optional description..." 64 + className="italic text-secondary outline-none bg-transparent" 65 65 value={descriptionState} 66 66 onChange={(e) => { 67 67 setDescriptionState(e.currentTarget.value); 68 68 }} 69 69 /> 70 70 {pub.doc ? ( 71 - <p>Published!</p> 71 + <p>Published</p> 72 72 ) : ( 73 - <p className="text-sm text-tertiary">Draft</p> 73 + <p className="text-sm text-tertiary p-1">Draft</p> 74 74 )} 75 75 </div> 76 76 );