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/Home: hide descriptions on mobile + wrap titles

+4 -2
+4 -2
web/src/pages/Home.tsx
··· 109 109 to={`/bbs/${encodeURIComponent(d.handle)}`} 110 110 className="flex items-baseline gap-3 px-3 py-2 -mx-3 rounded hover:bg-neutral-900 group" 111 111 > 112 - <span className="text-neutral-200 group-hover:text-white"> 112 + <span className="text-neutral-200 group-hover:text-white break-words"> 113 113 {d.name} 114 114 </span> 115 - <span className="text-neutral-500">{d.desc}</span> 115 + <span className="text-neutral-500 hidden sm:inline"> 116 + {d.desc} 117 + </span> 116 118 </Link> 117 119 ))} 118 120 </div>