mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
fix(reply): edit menu checkbox was displaced on mobile
This commit is contained in:
@@ -95,7 +95,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.replyCheckbox {
|
.replyCheckbox {
|
||||||
padding-left: 5px;
|
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -13,6 +13,10 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.checkbox {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
.postMenu {
|
.postMenu {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 2.5em;
|
line-height: 2.5em;
|
||||||
|
|||||||
@@ -154,7 +154,9 @@ const PostMenuMobile = ({ post }: { post: Comment }) => {
|
|||||||
document.body,
|
document.body,
|
||||||
)}
|
)}
|
||||||
{(isAccountMod || isAccountCommentAuthor) && (
|
{(isAccountMod || isAccountCommentAuthor) && (
|
||||||
<EditMenu isAccountCommentAuthor={isAccountCommentAuthor} isAccountMod={isAccountMod} isCommentAuthorMod={isCommentAuthorMod} post={post} />
|
<span className={styles.checkbox}>
|
||||||
|
<EditMenu isAccountCommentAuthor={isAccountCommentAuthor} isAccountMod={isAccountMod} isCommentAuthorMod={isCommentAuthorMod} post={post} />
|
||||||
|
</span>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user