summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorRichard <richard@tripaneer.com>2020-02-01 19:24:11 +0100
committerRichard <richard@tripaneer.com>2020-02-01 19:24:11 +0100
commitecb6d90f63ddb110cb382800fcec2a3b0dc61227 (patch)
treea789d851720016b8b94a68d98813d507cecdfc53 /ui
parent2f9a052f89fe8d34fedcd2219e644dd51cda5505 (diff)
changed h2 back to h5
Diffstat (limited to 'ui')
-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>