Retro Bulletin Board Systems on atproto. Web app and TUI. lazy mirror of alyraffauf/atbbs atbbs.xyz
forums python tui atproto bbs
3
fork

Configure Feed

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

web: fix link colors

+1 -1
+1 -1
web/src/components/PostBody.tsx
··· 2 2 3 3 export default function PostBody({ children }: { children: string }) { 4 4 return ( 5 - <div className="text-neutral-400 leading-relaxed prose prose-invert prose-sm prose-h1:text-xl prose-h2:text-lg prose-h3:text-base prose-h4:text-sm"> 5 + <div className="text-neutral-400 leading-relaxed prose dark:prose-invert prose-sm prose-h1:text-xl prose-h2:text-lg prose-h3:text-base prose-h4:text-sm"> 6 6 <Markdown>{children}</Markdown> 7 7 </div> 8 8 );