mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 12:21:13 +00:00
Merge pull request #1195 from fheft/fix-button-click-area
Fix unclickable button paddings
This commit is contained in:
commit
0197c2a0fc
2 changed files with 25 additions and 29 deletions
|
@ -436,15 +436,13 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
|||
<>
|
||||
{!this.myComment && (
|
||||
<>
|
||||
<button className="btn btn-link btn-animate">
|
||||
<Link
|
||||
className="text-muted"
|
||||
className="btn btn-link btn-animate text-muted"
|
||||
to={`/create_private_message/${cv.creator.id}`}
|
||||
title={i18n.t("message").toLowerCase()}
|
||||
>
|
||||
<Icon icon="mail" />
|
||||
</Link>
|
||||
</button>
|
||||
<button
|
||||
className="btn btn-link btn-animate text-muted"
|
||||
onClick={linkEvent(
|
||||
|
|
|
@ -649,9 +649,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
get commentsButton() {
|
||||
const post_view = this.props.post_view;
|
||||
return (
|
||||
<button className="btn btn-link text-muted py-0 pl-0">
|
||||
<Link
|
||||
className="text-muted"
|
||||
className="btn btn-link text-muted py-0 pl-0 text-muted"
|
||||
title={i18n.t("number_of_comments", {
|
||||
count: Number(post_view.counts.comments),
|
||||
formattedCount: Number(post_view.counts.comments),
|
||||
|
@ -671,7 +670,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
</span>
|
||||
)}
|
||||
</Link>
|
||||
</button>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue