Skip to content

Commit

Permalink
fix: invite button spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
agazso committed Sep 22, 2023
1 parent 17a271d commit 4f8fce0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/routes/chat/[id]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@
</p>
<Spacer />
<Container direction="row" justify="center" gap={12} alignItems="center" padY={0}>
<Button align="center" variant="strong" on:click={() => join()}>
<Button align="block" variant="strong" on:click={() => join()}>
<Checkmark />
Start chatting
</Button>
<Button align="left" on:click={() => decline()}>
<Button align="block" on:click={() => decline()}>
<Close />
Decline
</Button>
Expand Down
4 changes: 2 additions & 2 deletions src/routes/invite/[address]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -209,11 +209,11 @@
chats
</p>
<Container direction="row" justify="center" gap={12} alignItems="center" padY={0}>
<Button variant="strong" on:click={() => startChat(wallet.address)}>
<Button align="block" variant="strong" on:click={() => startChat(wallet.address)}>
<CopyLink />
Start new chat
</Button>
<Button on:click={() => decline()}>
<Button align="block" on:click={() => decline()}>
<Close />
Decline
</Button>
Expand Down

0 comments on commit 4f8fce0

Please sign in to comment.