0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Removed outline from focused textarea

This commit is contained in:
Peter Zimon 2022-07-05 16:34:12 +02:00
parent 45172d875a
commit 81db05a3ac

View file

@ -71,7 +71,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 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" 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>