This commit is contained in:
Isaac Visintainer 2019-07-05 13:03:56 -07:00
parent ef82f10648
commit 4c6bbb07d3
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ export class PostSnippet extends Component {
return (
<p className="body-regular-400 body-preview"
style={{webkitBoxOrient: "vertical"}}>
style={{WebkitBoxOrient: "vertical"}}>
{string}
</p>
);

View File

@ -45,7 +45,7 @@ export class RecentPreview extends Component {
return (
<div className="w-336 relative"
style={{height:235, marginBottom: 72, marginRight: 16}}>
style={{height:240, marginBottom: 72, marginRight: 16}}>
<Link to={postLink}>
<TitleSnippet title={this.props.post.postTitle}/>
<PostSnippet

View File

@ -9,7 +9,7 @@ export class TitleSnippet extends Component {
render() {
return (
<p className="body-large b title-preview"
style={{webkitBoxOrient: "vertical"}}>
style={{WebkitBoxOrient: "vertical"}}>
{this.props.title}
</p>
);