How to Remove Outline Close Button Bootstrap 4

To remove the outline on the close button at bootstrap, do the following: add the following line of code into your css style:

.close:focus, .close:hover {
   outline: none;
   cursor: pointer;
}

Save and refresh.

Add a comment