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 ( return (
<Page> <Page>
<section className="card card--section"> <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__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> <FormRow>
<FormField <FormField
type="textarea" type="textarea"
@ -83,38 +83,24 @@ class ReportPage extends React.Component {
</section> </section>
<section className="card card--section"> <section className="card card--section">
<div className="card__title">{__('Developer?')}</div> <div className="card__title">{__('Developer?')}</div>
<p> <div className="card__content">
{__('You can also')}{' '} <p>
<Button {__('You can also')}{' '}
button="link" <Button
href="https://github.com/lbryio/lbry-desktop/issues" button="link"
label={__('submit an issue on GitHub')} href="https://github.com/lbryio/lbry-desktop/issues"
/>. label={__('submit an issue on GitHub')}
</p> />.
<p> </p>
{__('Explore our')}{' '} <p>
<Button {__('Explore our')}{' '}
button="link" <Button button="link" href="https://lbry.tech" label={__('technical resources')} />.
href="https://lbry.tech" </p>
label={__('LBRY Technical Resources')} <p>
/>. {__('Join our')}{' '}
</p> <Button button="link" href="https://discourse.lbry.io/" label={__('tech forum')} />.
<p> </p>
{__('Join our')}{' '} </div>
<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>
</section> </section>
</Page> </Page>
); );