0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00
This commit is contained in:
Peter Zimon 2022-07-05 17:26:12 +02:00
parent 5b4dbb34fc
commit a54e1f0d12
2 changed files with 2 additions and 2 deletions

View file

@ -78,7 +78,7 @@ class Form extends React.Component {
}
</figure>
<div className="w-full">
<textarea className="w-full resize-none rounded-md border h-24 p-3 font-sans mb-1 focus:outline-0 dark:bg-[rgba(255,255,255,0.08)] dark:border-none" value={this.state.message} onChange={this.handleChange} placeholder="Join the conversation" />
<textarea className="w-full resize-none rounded-md border h-24 p-3 font-sans mb-1 focus:outline-0 dark:bg-[rgba(255,255,255,0.08)] dark:border-none dark:text-neutral-300" value={this.state.message} onChange={this.handleChange} placeholder="Join the conversation" />
<button type="submit" className="w-full rounded-md border p-3 py-2.5 font-sans text-sm text-center bg-black font-semibold text-white dark:bg-[rgba(255,255,255,0.8)] dark:text-neutral-800">Add your comment</button>
</div>
</div>

View file

@ -10,7 +10,7 @@ const ShadowRoot = ({
);
return (
<root.div {...props} title='ghost-comments-shadowroot' mode={'closed'}>
<root.div {...props} mode={'closed'}>
{head}
{children}
</root.div>