chore: fix spacing
This commit is contained in:
@@ -143,11 +143,13 @@ const Vaults = () => {
|
|||||||
<PreferencesGroup>
|
<PreferencesGroup>
|
||||||
<PreferencesSegment>
|
<PreferencesSegment>
|
||||||
<Title>Contacts</Title>
|
<Title>Contacts</Title>
|
||||||
<div className="my-2 flex flex-col gap-3.5">
|
{contacts.length > 0 && (
|
||||||
{contacts.map((contact) => {
|
<div className="my-2 flex flex-col gap-3.5">
|
||||||
return <ContactItem contact={contact} key={contact.uuid} />
|
{contacts.map((contact) => {
|
||||||
})}
|
return <ContactItem contact={contact} key={contact.uuid} />
|
||||||
</div>
|
})}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
<div className="mt-2.5 flex flex-row">
|
<div className="mt-2.5 flex flex-row">
|
||||||
<Button label="Add New Contact" className={'mr-3 text-xs'} onClick={createNewContact} />
|
<Button label="Add New Contact" className={'mr-3 text-xs'} onClick={createNewContact} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user