1
0
Fork 0

Change size of titles

This commit is contained in:
Amarpreet Minhas 2019-08-04 00:29:25 -04:00
parent e6ef0b1dae
commit 4071d61d59
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ class PostList extends React.Component {
<div className="item" key={post.id}>
<div className="content">
<div className="description">
<h2><b><u><Link to={"/posts/" + post.slug}>{post.title}</Link></u></b></h2>
<h1><b><u><Link to={"/posts/" + post.slug}>{post.title}</Link></u></b></h1>
<h3><b>By <Link to={"/users/"+ post.author}>{post.author}</Link></b></h3>
<h4>Posted {post.time_published}</h4>
<div className="markdown-body">

View file

@ -24,7 +24,7 @@ class User extends React.Component {
<div className="item" key={post.id}>
<div className="content">
<div className="description">
<h2><b><u><Link to={"/posts/" + post.slug}>{post.title}</Link></u></b></h2>
<h1><b><u><Link to={"/posts/" + post.slug}>{post.title}</Link></u></b></h1>
<h3><b>By <Link to={"/users/"+ post.author}>{post.author}</Link></b></h3>
<h4>Posted {post.time_published}</h4>
<div className="markdown-body">