Settings page and UI tweaks (#200)

This commit is contained in:
Alejandro
2023-02-05 23:44:31 +01:00
committed by GitHub
parent a1d42fa9fb
commit 40a5e00dc5
17 changed files with 235 additions and 122 deletions

View File

@ -31,7 +31,11 @@ export default function ProfilePreview(props: ProfilePreviewProps) {
{options.about ? <div className="f-ellipsis about">
{user?.about}
</div> : undefined} />
{props.actions ?? <FollowButton pubkey={pubkey} className="ml5" />}
{props.actions ?? (
<div className="follow-button-container">
<FollowButton pubkey={pubkey} />
</div>
)}
</>}
</div>
)