Change size of titles
This commit is contained in:
parent
e6ef0b1dae
commit
4071d61d59
2 changed files with 2 additions and 2 deletions
|
@ -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">
|
||||
|
|
|
@ -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">
|
||||
|
|
Reference in a new issue