profile fixes

This commit is contained in:
Alejandro Gomez
2023-01-26 07:51:38 +01:00
parent 52ddac5ef5
commit 67772c099a
5 changed files with 34 additions and 15 deletions

View File

@ -17,7 +17,7 @@ export default function FollowListBase({ pubkeys, title }: FollowListBaseProps)
return (
<div className="main-content">
<div className="flex mt10">
<div className="f-grow">{title}</div>
<div className="f-grow bold">{title}</div>
<button type="button" onClick={() => followAll()}>Follow All</button>
</div>
{pubkeys?.map(a => <ProfilePreview pubkey={a} key={a} />)}