<div class="row">
<div className={`vote-bar col-1 pr-0 small text-center`}>
<button
- className={`btn-animate btn btn-link p-0 ${
+ className={`btn-animate btn btn-link btn-lg p-0 ${
this.state.my_vote == 1 ? 'text-info' : 'text-muted'
}`}
onClick={linkEvent(this, this.handlePostLike)}
</div>
{WebSocketService.Instance.site.enable_downvotes && (
<button
- className={`btn-animate btn btn-link p-0 ${
+ className={`btn-animate btn btn-link btn-lg p-0 ${
this.state.my_vote == -1 ? 'text-danger' : 'text-muted'
}`}
onClick={linkEvent(this, this.handlePostDisLike)}