mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 12:53:13 +03:00
Fixed up the dropdown text alignments
refs https://github.com/TryGhost/Team/issues/1703
This commit is contained in:
parent
2c013b8db0
commit
273c19db45
@ -20,11 +20,11 @@ const AdminContextMenu = (props) => {
|
||||
<div className="flex flex-col">
|
||||
{
|
||||
isHidden ?
|
||||
<button className="text-[14px]" onClick={showComment}>
|
||||
<button className="w-full text-left text-[14px]" onClick={showComment}>
|
||||
Show comment
|
||||
</button>
|
||||
:
|
||||
<button className="text-[14px]" onClick={hideComment}>
|
||||
<button className="w-full text-left text-[14px]" onClick={hideComment}>
|
||||
Hide comment
|
||||
</button>
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ const AuthorContextMenu = (props) => {
|
||||
<button className="w-full mb-3 text-left text-[14px]" onClick={props.toggleEdit}>
|
||||
Edit
|
||||
</button>
|
||||
<button className="w-full text-left text-[14px]" onClick={deleteComment}>
|
||||
<button className="w-full text-left text-[14px] text-red-600" onClick={deleteComment}>
|
||||
Delete
|
||||
</button>
|
||||
</div>
|
||||
|
@ -14,7 +14,7 @@ const NotAuthorContextMenu = (props) => {
|
||||
|
||||
return (
|
||||
<div className="flex flex-col">
|
||||
<button className="text-[14px]" onClick={openModal}>
|
||||
<button className="w-full text-left text-[14px]" onClick={openModal}>
|
||||
Report comment
|
||||
</button>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user