mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-02 10:15:11 +00:00
fix: account locked styling
This commit is contained in:
parent
538cf4dc46
commit
f52c4f2297
1 changed files with 22 additions and 20 deletions
|
@ -56,26 +56,28 @@ class RewardsPage extends PureComponent<Props> {
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<section className="card card--section">
|
<section className="card card--section">
|
||||||
<p>
|
<div className="card__content">
|
||||||
{__(
|
<p>
|
||||||
'This account must undergo review before you can participate in the rewards program.'
|
{__(
|
||||||
)}{' '}
|
'This account must undergo review before you can participate in the rewards program.'
|
||||||
{__('This can take anywhere from several minutes to several days.')}
|
)}{' '}
|
||||||
</p>
|
{__('This can take anywhere from several minutes to several days.')}
|
||||||
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
{__(
|
{__(
|
||||||
'We apologize for this inconvenience, but have added this additional step to prevent fraud.'
|
'We apologize for this inconvenience, but have added this additional step to prevent fraud.'
|
||||||
)}
|
)}
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
{`${__('If you continue to see this message, send us an email to help@lbry.com.')} ${__(
|
{`${__(
|
||||||
'Please enjoy free content in the meantime!'
|
'If you continue to see this message, send us an email to help@lbry.com.'
|
||||||
)}`}
|
)} ${__('Please enjoy free content in the meantime!')}`}
|
||||||
</p>
|
</p>
|
||||||
<p>
|
</div>
|
||||||
|
<div className="card__actions">
|
||||||
<Button navigate="/" button="primary" label="Return Home" />
|
<Button navigate="/" button="primary" label="Return Home" />
|
||||||
</p>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -138,8 +140,8 @@ class RewardsPage extends PureComponent<Props> {
|
||||||
<p className="card__content">
|
<p className="card__content">
|
||||||
{claimed && claimed.length
|
{claimed && claimed.length
|
||||||
? __(
|
? __(
|
||||||
"You have claimed all available rewards! We're regularly adding more so be sure to check back later."
|
"You have claimed all available rewards! We're regularly adding more so be sure to check back later."
|
||||||
)
|
)
|
||||||
: __('There are no rewards available at this time, please check back later.')}
|
: __('There are no rewards available at this time, please check back later.')}
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Add table
Reference in a new issue