Add Send and Receive buttons to main view using active address
Some checks failed
check / check (push) Has been cancelled

This commit is contained in:
2026-02-26 03:47:04 +07:00
parent 0d543288b2
commit b8126c6080
2 changed files with 69 additions and 2 deletions

View File

@@ -178,6 +178,22 @@
class="text-2xl font-bold mb-2 min-h-[2rem]"
></div>
<!-- quick actions for active address -->
<div class="flex gap-2 mb-3">
<button
id="btn-main-send"
class="border border-border px-2 py-1 hover:bg-fg hover:text-bg cursor-pointer flex-1"
>
Send
</button>
<button
id="btn-main-receive"
class="border border-border px-2 py-1 hover:bg-fg hover:text-bg cursor-pointer flex-1"
>
Receive
</button>
</div>
<!-- wallet list -->
<div id="wallet-list"></div>
</div>