Issue
How can we remove arrow of this react tooltip and give it a border?
https://www.npmjs.com/package/react-tooltip
Solution
you can by overide tooltip css, try this
<span data-tip="hello" data-class="tool-tip"></span>
.tool-tip::before {
border-right: none !important;
}
or
.__react_component_tooltip::before,
.__react_component_tooltip::after {
content: none !important;
}
Answered By - iamhuynq
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.