a tool for shared writing and social publishing
0
fork

Configure Feed

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

add max-w-prose to content

+3 -3
+3 -3
app/lish/[did]/[publication]/[rkey]/page.tsx
··· 92 92 } 93 93 return ( 94 94 <ThemeProvider entityID={null}> 95 - <div className="flex flex-col px-3 sm:px-4 py-3 sm:py-9 mx-auto max-w-prose w-full bg-[#FDFCFA] h-fit"> 96 - <div className="pubHeader flex flex-col pb-5"> 95 + <div className="flex flex-col px-3 sm:px-4 py-3 sm:py-9 mx-auto w-full bg-[#FDFCFA] h-fit"> 96 + <div className="pubHeader flex flex-col pb-5 mx-auto max-w-prose"> 97 97 <Link 98 98 className="font-bold hover:no-underline text-accent-contrast" 99 99 href={getPublicationURL( ··· 134 134 ) : null} 135 135 </div> 136 136 </div> 137 - <div className="postContent flex flex-col "> 137 + <div className="postContent flex flex-col max-w-prose mx-auto"> 138 138 {blocks.map((b, index) => { 139 139 return <Block block={b} did={did} key={index} />; 140 140 })}