changed h2 back to h5

This commit is contained in:
Richard 2020-02-01 19:24:11 +01:00
parent 2f9a052f89
commit ecb6d90f63
2 changed files with 3 additions and 3 deletions

View file

@ -78,7 +78,7 @@ export class Login extends Component<any, State> {
return (
<div>
<form onSubmit={linkEvent(this, this.handleLoginSubmit)}>
<h2>{ i18n.t('login') }</h2>
<h5>{ i18n.t('login') }</h5>
<div class="form-group row">
<label class="col-sm-2 col-form-label" for="login-email-or-username">
{ i18n.t('email_or_username') }

View file

@ -31,9 +31,9 @@ export class PostListings extends Component<PostListingsProps, any> {
))
) : (
<>
<h2>
<h5>
{ i18n.t('no_posts') }
</h2>
</h5>
{this.props.showCommunity !== undefined && (
<div>
<Link to="/communities">{ i18n.t('subscribe_to_communities') }</Link>