How can we remove arrow of this react tooltip and give it a border?
Asked
Active
Viewed 899 times
1 Answers
1
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;
}

iamhuynq
- 5,357
- 1
- 13
- 36