clean up strings
This commit is contained in:
parent
e7cdd6c13d
commit
6ca2bfdc34
2 changed files with 18 additions and 6 deletions
|
@ -40,17 +40,29 @@ const WalletPage = (props: Props) => {
|
|||
subtitle={
|
||||
<div>
|
||||
<p>
|
||||
There are a lot of ways to get LBC! You can have your friend send you a few, earn rewards, or
|
||||
purchase your own.
|
||||
{__(
|
||||
'There are a lot of ways to get LBC! You can purchase your own, earn rewards, or have your friend send you a few.'
|
||||
)}
|
||||
</p>
|
||||
<div className="section__actions">
|
||||
<Button button="primary" label={__('Earn Rewards')} navigate={`/$/${PAGES.REWARDS}`} />
|
||||
<Button
|
||||
button="primary"
|
||||
icon={ICONS.BUY}
|
||||
label={__('Buy Credits')}
|
||||
navigate={`/$/${PAGES.BUY}`}
|
||||
/>
|
||||
<Button
|
||||
button="secondary"
|
||||
label={__('Send To Your Address')}
|
||||
icon={ICONS.REWARDS}
|
||||
label={__('Earn Rewards')}
|
||||
navigate={`/$/${PAGES.REWARDS}`}
|
||||
/>
|
||||
<Button
|
||||
icon={ICONS.RECEIVE}
|
||||
button="secondary"
|
||||
label={__('Your Address')}
|
||||
onClick={() => doOpenModal(MODALS.WALLET_RECEIVE)}
|
||||
/>
|
||||
<Button button="alt" icon={ICONS.SEND} label={__('Buy Credits')} navigate={`/$/${PAGES.BUY}`} />
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
|
|
|
@ -363,7 +363,7 @@
|
|||
$width: calc((100vw / 2) - var(--spacing-s) * 2);
|
||||
width: $width;
|
||||
@include handleClaimTileGifThumbnail($width);
|
||||
margin-bottom: var(--spacing-large);
|
||||
margin-bottom: var(--spacing-l);
|
||||
|
||||
&:first-child,
|
||||
&:nth-child(2n + 1) {
|
||||
|
|
Loading…
Reference in a new issue