minor design fixes

This commit is contained in:
Ren Amamiya
2023-05-08 07:59:50 +07:00
parent 75830122bf
commit b6ef52e38c
9 changed files with 18 additions and 22 deletions

View File

@@ -36,7 +36,7 @@ export default function NoteReplyForm({ id }: { id: string }) {
};
return (
<div className="flex gap-3 px-3 py-4">
<div className="flex gap-2.5 px-3 py-4">
<div>
<div className="relative h-9 w-9 shrink-0 overflow-hidden rounded-md">
<Image src={profile?.picture} alt={account?.pubkey} className="h-9 w-9 rounded-md object-cover" />

View File

@@ -9,7 +9,7 @@ export default function Reply({ data }: { data: any }) {
<div className="flex h-min min-h-min w-full select-text flex-col px-3 py-3">
<div className="flex flex-col">
<NoteReplyUser pubkey={data.pubkey} time={data.created_at} />
<div className="-mt-[17px] pl-[48px]">
<div className="-mt-[18px] pl-[46px]">
<NoteContent content={content} />
</div>
</div>