Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WALL] george / WALL-3220 / The padding size between cards in the success page does not align with design.(Mobile view) #12773

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
display: flex;
flex-direction: row;
align-items: center;
gap: 1.7rem;
gap: 1.6rem;

& .wallets-card__details {
padding: 1.6rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,15 @@ const TransferReceipt = () => {
<ReceiptCard
account={fromAccount}
activeWallet={activeWallet}
balance={`- ${displayTransferredFromAmount}`}
balance={`-${displayTransferredFromAmount}`}
/>
<div className='wallets-transfer-receipt__arrow-icon'>
<Arrow />
</div>
<ReceiptCard
account={toAccount}
activeWallet={activeWallet}
balance={`+ ${displayTransferredToAmount}`}
balance={`+${displayTransferredToAmount}`}
/>
</div>
<div
Expand Down