Skip to content

Commit

Permalink
Fixed the offset of the send button on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
ttwishing committed Aug 19, 2024
1 parent a0b7a4c commit 150d1ca
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/pages/dashboard/row.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,12 @@
color: var(--main-black);
}
}
.send {
padding: 9px;
:global(.button) {
margin: 0;
}
}
}
}
Expand Down Expand Up @@ -283,10 +289,12 @@
{/if}
</div>
{#if transferable}
<Button fluid href={$url} style="secondary">
<Icon name="arrow-up" />
<Text>Send</Text>
</Button>
<div class="send">
<Button fluid href={$url} style="secondary">
<Icon name="arrow-up" />
<Text>Send2</Text>
</Button>
</div>
{/if}
</div>
</div>
Expand Down

0 comments on commit 150d1ca

Please sign in to comment.