summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/src/components/login.tsx2
-rw-r--r--ui/src/components/post-listings.tsx4
2 files changed, 3 insertions, 3 deletions
diff --git a/ui/src/components/login.tsx b/ui/src/components/login.tsx
index bea8564c..1aacac0e 100644
--- a/ui/src/components/login.tsx
+++ b/ui/src/components/login.tsx
@@ -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') }
diff --git a/ui/src/components/post-listings.tsx b/ui/src/components/post-listings.tsx
index d3d89e54..d61316b5 100644
--- a/ui/src/components/post-listings.tsx
+++ b/ui/src/components/post-listings.tsx
@@ -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>