Hello, I ran into a problem using react-modal. Whenever I add a className, the weird border appears when modal open. Doesn't appear if I use inline, but I need responsiveness, that inline doesn't provide.
It disappears when you try to inspect or click on inspect panel.
Anyone else ran into this issue?
That weird border, shouldn't be there.
https://codepen.io/claydiffrient/pen/KNjVrG
@shmekla
Are you talking about the border around the modal itself? It might be because the whole modal is in focus.
:focus { outline: none; } removes it.
Close this, is solved.
Most helpful comment
:focus { outline: none; } removes it.