How to remove the dashboard border in the Icon theme?

I am struggling to remove this border that is on my website. It appears when you hover or click on an item or word.

I have the icon theme.

Try adding this code at the very bottom of stylesheet.css

:focus {
  outline: none !important;
}

@UnciBoutique

Please add the following code at the bottom of your assets/stylesheet.css file.

:focus {
  outline: none !important;
}

Hope this works.

Thanks!