Style fix

This commit is contained in:
Dessalines 2019-04-21 17:38:35 -07:00
parent 6aefbf355e
commit 1fce49ceef
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ export class Post extends Component<any, PostState> {
{this.state.loading ?
<h5><svg class="icon icon-spinner spin"><use xlinkHref="#icon-spinner"></use></svg></h5> :
<div class="row">
<div class="col-12 col-md-8 col-lg-7 mb-3 pr-0">
<div class="col-12 col-md-8 col-lg-7 mb-3">
<PostListing
post={this.state.post}
showBody
@ -97,7 +97,7 @@ export class Post extends Component<any, PostState> {
<div class="col-12 col-md-4 col-lg-3 mb-3 d-none d-md-block px-0">
{this.state.comments.length > 0 && this.newComments()}
</div>
<div class="col-12 col-sm-12 col-lg-2 px-0 pl-2">
<div class="col-12 col-sm-12 col-lg-2">
{this.sidebar()}
</div>
</div>