mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 14:45:20 +00:00
Fix post listing formatting.
This commit is contained in:
parent
f53c796a70
commit
4836da9d64
|
@ -562,7 +562,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
||||||
</svg>
|
</svg>
|
||||||
{this.state.upvotes}
|
{this.state.upvotes}
|
||||||
</button>
|
</button>
|
||||||
{this.props.enableDownvotes && (<button
|
{this.props.enableDownvotes && (
|
||||||
|
<button
|
||||||
className={`ml-2 btn-animate btn py-0 pl-1 ${
|
className={`ml-2 btn-animate btn py-0 pl-1 ${
|
||||||
this.state.my_vote == -1 ? 'text-danger' : 'text-muted'
|
this.state.my_vote == -1 ? 'text-danger' : 'text-muted'
|
||||||
}`}
|
}`}
|
||||||
|
|
Loading…
Reference in a new issue