-
-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove focus ring #40
Comments
@chriscoindeskindices Have you found the solution? |
I figured out the solution : JSX : const TagInput = (props) => { <TagsInput {...props} classNames="tag-cls input-cls" separators={["Enter", ","]} /> <em style={{ fontWeight: "lighter", fontSize: 10 }}> press enter or comma to add new tag ); }; export default TagInput; CSS : `.rti--input::placeholder { #tag-input { It works for me |
How do I remove the focus ring? I tried to add styles to rti--container:focus { outline: none } and rti--input:focus { outline: none }, but it's not working
The text was updated successfully, but these errors were encountered: