more styles 2.

This commit is contained in:
Dessalines 2019-08-17 22:04:17 -07:00
parent db32eae7e3
commit 70d93760e4
2 changed files with 2 additions and 7 deletions

View file

@ -70,7 +70,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
<svg class="pointer icon downvote"><use xlinkHref="#icon-arrow-down"></use></svg> <svg class="pointer icon downvote"><use xlinkHref="#icon-arrow-down"></use></svg>
</div> </div>
</div> </div>
<div id={`comment-${node.comment.id}`} className={`details ml-4 ${this.isCommentNew ? 'mark' : ''}`}> <div id={`comment-${node.comment.id}`} className={`details comment-node ml-4 ${this.isCommentNew ? 'mark' : ''}`}>
<ul class="list-inline mb-0 text-muted small"> <ul class="list-inline mb-0 text-muted small">
<li className="list-inline-item"> <li className="list-inline-item">
<Link className="text-info" to={`/u/${node.comment.creator_name}`}>{node.comment.creator_name}</Link> <Link className="text-info" to={`/u/${node.comment.creator_name}`}>{node.comment.creator_name}</Link>

View file

@ -59,12 +59,7 @@ body, .text-white, .navbar-brand, .badge-light, .btn-secondary {
height: auto; height: auto;
} }
.listing { .listing, .comment-node {
/* min-height: 61px; */
margin-bottom: 10px;
}
.details {
margin-bottom: 10px; margin-bottom: 10px;
} }