iannbing / react-simple-tree-menu

A simple React tree menu component
MIT License
135 stars 48 forks source link

How to remove border around th entire element? #176

Closed deniszik closed 3 years ago

deniszik commented 4 years ago

Greetings!

Please, tell me how to remove the border around the entire element? It appears when an item is selected.

Thanks!

hyungkyulee commented 4 years ago

I have the same issue

meneman commented 4 years ago

its the default outline chrome adds to focused elements. This will do the trick:

some-element-above-tree-menu *:focus {

outline: none;

}