Skip to content

Commit

Permalink
feat: gos-153
Browse files Browse the repository at this point in the history
  • Loading branch information
gicharujohn committed Sep 1, 2022
1 parent 78cec6b commit 7d300a6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/Pages/Profile/WalletSettings/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@
}
};
const goBackToProfile = () => {
goto('/profile/' + $page.params.publicKey);
};
const removeWallet = () => {
if (wallet) {
const _wallets = $wallets.filter((_wallet) => _wallet.walletName !== wallet.walletName);
Expand Down Expand Up @@ -407,7 +411,7 @@
</Button>
</div>
<div class="cancel-bt">
<Button hasRing={true}>
<Button hasRing={true} on:click={goBackToProfile}>
<p slot="text" class="btn-text">Cancel</p>
</Button>
</div>
Expand Down
5 changes: 5 additions & 0 deletions src/styles/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
display: none;
}

html,
body {
@apply dark:bg-dark-grey bg-white;
}

/* Global app grid */

.global-grid-nav {
Expand Down

0 comments on commit 7d300a6

Please sign in to comment.