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/ActionBar: wrap buttons cleanly

+2 -2
+1 -1
web/src/components/nav/ActionBar.tsx
··· 5 5 } 6 6 7 7 export default function ActionBar({ children }: ActionBarProps) { 8 - return <div className="flex items-center gap-2">{children}</div>; 8 + return <div className="flex flex-wrap items-center gap-2">{children}</div>; 9 9 }
+1 -1
web/src/components/nav/ActionButton.tsx
··· 1 1 import { Link } from "react-router-dom"; 2 2 3 3 const actionStyle = 4 - "bg-neutral-800 hover:bg-neutral-700 text-neutral-200 px-4 py-2 rounded"; 4 + "bg-neutral-800 hover:bg-neutral-700 text-neutral-200 px-4 py-2 rounded whitespace-nowrap"; 5 5 6 6 interface ActionButtonProps { 7 7 onClick: () => void;