mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Updated edit and reply form style
This commit is contained in:
parent
828338331c
commit
301a129665
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ const EditForm = (props) => {
|
|||
const comment = props.comment;
|
||||
|
||||
return (
|
||||
<form onSubmit={submitForm} className={`comment-form transition duration-200 border border-neutral-150 hover:border-neutral-200 rounded-md px-3 pt-3 pb-2 -ml-[13px] -mr-3 -mt-[13px] mb-10 shadow-lg shadow-neutral-50 hover:shadow-xl hover:shadow-neutral-100`}>
|
||||
<form onSubmit={submitForm} className={`comment-form transition duration-200 rounded-md px-3 pt-3 pb-2 -ml-[13px] -mr-3 -mt-[13px] mb-10 shadow-lg hover:shadow-xl`}>
|
||||
<div>
|
||||
<div className="flex justify-start items-center">
|
||||
<Avatar saturation={props.avatarSaturation} />
|
||||
|
|
|
@ -56,7 +56,7 @@ const ReplyForm = (props) => {
|
|||
};
|
||||
|
||||
return (
|
||||
<form onSubmit={submitForm} onClick={handleFocus} className={`comment-form transition duration-200 border border-neutral-150 hover:border-neutral-200 rounded-md px-3 pt-3 pb-2 -ml-[13px] -mr-[12px] -mt-[15px] shadow-lg shadow-neutral-50 hover:shadow-xl hover:shadow-neutral-100 ${focused ? 'cursor-default' : 'cursor-pointer'}`}>
|
||||
<form onSubmit={submitForm} onClick={handleFocus} className={`comment-form transition duration-200 rounded-md px-3 pt-3 pb-2 -ml-[13px] -mr-[12px] -mt-[15px] shadow-lg hover:shadow-xl ${focused ? 'cursor-default' : 'cursor-pointer'}`}>
|
||||
<div className="w-full relative">
|
||||
<div className="pr-3 font-sans leading-normal dark:text-neutral-300">
|
||||
<div className="relative w-full">
|
||||
|
|
Loading…
Add table
Reference in a new issue