Skip to content

Commit 239d286

Browse files
committed
wip: wallet flow
1 parent 95a1dfe commit 239d286

File tree

4 files changed

+221
-174
lines changed

4 files changed

+221
-174
lines changed

styles/wallet.module.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,12 @@
106106
flex-direction: column;
107107
}
108108

109+
@media (max-width: 768px) {
110+
.form {
111+
margin-top: 1rem;
112+
}
113+
}
114+
109115
.separator {
110116
display: flex;
111117
align-items: center;
@@ -136,3 +142,12 @@
136142
grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
137143
container-type: inline-size;
138144
}
145+
146+
.progressNumber {
147+
display: inline-block;
148+
background-color: var(--bs-body-bg);
149+
border-radius: 50%;
150+
width: 24px;
151+
height: 24px;
152+
line-height: 24px;
153+
}

wallets/client/components/card.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ export function WalletCard ({ wallet, draggable = false, index, ...props }) {
5555
}
5656

5757
function WalletLink ({ wallet, children }) {
58-
const support = useWalletSupport(wallet)
59-
const sendRecvParam = support.send ? 'send' : 'receive'
60-
const href = '/wallets' + (isWallet(wallet) ? `/${wallet.id}` : `/${urlify(wallet.name)}`) + `/${sendRecvParam}`
58+
const href = '/wallets' + (isWallet(wallet) ? `/${wallet.id}` : `/${urlify(wallet.name)}`)
6159
return <Link href={href}>{children}</Link>
6260
}
6361

0 commit comments

Comments
 (0)