crubier / react-graph-vis

A react component to render nice graphs using vis.js

Home Page:http://crubier.github.io/react-graph-vis/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Removal of focus border in graph canvas

Joyfred opened this issue · comments

On clicking graph, border comes up. Is there anyway to remove this. I tried using border: "none", it doesn't work. Please help me on this

Try adding the below to css, it worked for me.

.vis-network:focus {
    outline: 0;
}