mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-28 07:51:31 +00:00
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}`}
|
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>
|
</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>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,9 +66,11 @@ class WalletAddress extends React.PureComponent<Props> {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="card__content">
|
{showQR && (
|
||||||
{showQR && <QRCode value={receiveAddress} paddingTop />}
|
<div className="card__content">
|
||||||
</div>
|
<QRCode value={receiveAddress} paddingTop />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
<div className="card__content">
|
<div className="card__content">
|
||||||
<div className="help">
|
<div className="help">
|
||||||
|
|
Loading…
Add table
Reference in a new issue