chore: tweak zapstr styles
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Kieran 2023-05-15 13:04:46 +01:00
parent 602b2fa143
commit 3f8cb11e36
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 7 additions and 7 deletions

View File

@ -11,8 +11,8 @@
}
.zapstr .pfp .avatar {
width: 25px;
height: 25px;
width: 35px;
height: 35px;
}
.zapstr .pfp .subheader {

View File

@ -23,13 +23,13 @@ export default function ZapstrEmbed({ link }: { link: NostrLink }) {
<h3>{subject?.[1] ?? ""}</h3>
</div>
<audio src={media?.[1] ?? ""} controls={true} />
<div>
{refPersons.map(a => (
<ProfileImage pubkey={a[1]} subHeader={<>{a[2] ?? ""}</>} className="" defaultNip=" " />
))}
</div>
</div>
</div>
<div className="zapstr">
{refPersons.map(a => (
<ProfileImage pubkey={a[1]} subHeader={<>{a[2] ?? ""}</>} className="card" />
))}
</div>
</>
);
}