how to get rid of outline on button css code example
Example 1: how to remove border from selected button
outline: none;
Example 2: css remove button outline
button:focus {outline:0;}
Example 3: remove button outlines
<button class="btn shadow-none">Bootstrap (4.1) button without shadow</button>