Update styles

This commit is contained in:
LordMathis 2017-11-12 19:47:38 +01:00
parent 0ecdd6e405
commit b016eab27b
3 changed files with 15 additions and 4 deletions

View File

@ -11,9 +11,15 @@ export default class Post extends Component {
return (
<div className="content-wrapper">
<a href={this.props.post.link}>
<h1>{this.props.post.title}</h1>
<h4>{this.props.post.published}</h4>
<div className="content" dangerouslySetInnerHTML={{__html: this.props.post.body}}>
</a>
<div className="content">
<div className="post-date">
<h3>{this.props.post.published}</h3>
</div>
<div className="post-content" dangerouslySetInnerHTML={{__html: this.props.post.body}}>
</div>
</div>
</div>
)

View File

@ -131,6 +131,10 @@ body {
padding: 0 5px 0 5px;
}
.post-content {
clear: both;
}
.post-summary, .post-content{
clear: both;
}
@ -155,6 +159,6 @@ body {
box-sizing: border-box;
margin: 0 auto;
@media screen and (min-width: $break-large) {
width: 80%;
width: 90%;
}
}

View File

@ -22,6 +22,7 @@ api.get('/post/:postname', (req, res) => {
} else {
res.json({
published: post.published,
link: post.link,
title: post.title,
body: data,
});