Upping title size again.

This commit is contained in:
Dessalines 2019-08-19 14:13:15 -07:00
parent d3aadc436b
commit 70354d6e10

View file

@ -73,12 +73,12 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
}
<div className="ml-4">
<div className="post-title">
<h6 className="mb-0 d-inline">
<h5 className="mb-0 d-inline">
{post.url ?
<a className="text-white" href={post.url} target="_blank" title={post.url}>{post.name}</a> :
<Link className="text-white" to={`/post/${post.id}`} title={i18n.t('comments')}>{post.name}</Link>
}
</h6>
</h5>
{post.url &&
<small>
<a className="ml-2 text-muted font-italic" href={post.url} target="_blank" title={post.url}>{(new URL(post.url)).hostname}</a>