fix card spacing
This commit is contained in:
parent
aeaed80999
commit
015ff765db
2 changed files with 12 additions and 12 deletions
|
@ -131,16 +131,14 @@ class ActiveShapeShift extends React.PureComponent<Props> {
|
|||
href={`https://shapeshift.io/#/status/${shiftOrderId}`}
|
||||
/>
|
||||
)}
|
||||
{shiftState === statuses.NO_DEPOSITS &&
|
||||
shiftReturnAddress && (
|
||||
<div className="shapeshift__actions-help">
|
||||
<span className="help">
|
||||
If the transaction doesn't go through, ShapeShift will return your {shiftCoinType}{' '}
|
||||
back to {shiftReturnAddress}
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
{shiftState === statuses.NO_DEPOSITS &&
|
||||
shiftReturnAddress && (
|
||||
<div className="help">
|
||||
If the transaction doesn't go through, ShapeShift will return your {shiftCoinType}{' '}
|
||||
back to {shiftReturnAddress}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -66,9 +66,11 @@ class WalletAddress extends React.PureComponent<Props> {
|
|||
/>
|
||||
</div>
|
||||
|
||||
<div className="card__content">
|
||||
{showQR && <QRCode value={receiveAddress} paddingTop />}
|
||||
</div>
|
||||
{showQR && (
|
||||
<div className="card__content">
|
||||
<QRCode value={receiveAddress} paddingTop />
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className="card__content">
|
||||
<div className="help">
|
||||
|
|
Loading…
Reference in a new issue