minor changes

This commit is contained in:
Sean Yesmunt 2018-11-12 18:58:26 -05:00
parent 146e2f1800
commit d740b26662

View file

@ -48,13 +48,13 @@ class ReportPage extends React.Component {
return (
<Page>
<section className="card card--section">
<div className="card__title">{__('Report an Issue/Request a Feature')}</div>
<p className="card__subtitle">
{__(
'Please describe the problem you experienced or the feature you want to see and any information you think might be useful to us. Links to screenshots are great!'
)}
</p>
<div className="card__content">
<div className="card__title">{__('Report an Issue/Request a Feature')}</div>
<p>
{__(
'Please describe the problem you experienced or the feature you want to see and any information you think might be useful to us. Links to screenshots are great!'
)}
</p>
<FormRow>
<FormField
type="textarea"
@ -83,38 +83,24 @@ class ReportPage extends React.Component {
</section>
<section className="card card--section">
<div className="card__title">{__('Developer?')}</div>
<p>
{__('You can also')}{' '}
<Button
button="link"
href="https://github.com/lbryio/lbry-desktop/issues"
label={__('submit an issue on GitHub')}
/>.
</p>
<p>
{__('Explore our')}{' '}
<Button
button="link"
href="https://lbry.tech"
label={__('LBRY Technical Resources')}
/>.
</p>
<p>
{__('Join our')}{' '}
<Button
button="link"
href="https://discourse.lbry.io/"
label={__('LBRY Tech Forum')}
/>.
</p>
<p>
{__('Read our')}{' '}
<Button
button="link"
href="https://lbry.tech/contribute"
label={__('Contributors Guide')}
/>.
</p>
<div className="card__content">
<p>
{__('You can also')}{' '}
<Button
button="link"
href="https://github.com/lbryio/lbry-desktop/issues"
label={__('submit an issue on GitHub')}
/>.
</p>
<p>
{__('Explore our')}{' '}
<Button button="link" href="https://lbry.tech" label={__('technical resources')} />.
</p>
<p>
{__('Join our')}{' '}
<Button button="link" href="https://discourse.lbry.io/" label={__('tech forum')} />.
</p>
</div>
</section>
</Page>
);