Skip to content

Commit

Permalink
[WALL] george / WALL-3220 / The padding size between cards in the suc…
Browse files Browse the repository at this point in the history
…cess page does not align with design.(Mobile view) (deriv-com#12773)

* fix: 💄 fix gap

* fix: 🎨 fix content
  • Loading branch information
heorhi-deriv authored Jan 5, 2024
1 parent 81b8272 commit ce324a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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 @@ -79,15 +79,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

0 comments on commit ce324a6

Please sign in to comment.