Check out this screen recorded gif on my device showcasing the blue-box-fill I'm referring to:
https://i.stack.imgur.com/ajr2y.gif
I attempted the following solution:
* {
user-select: none;
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
};
button,
button:active,
button:focus {
outline: none;
};
However, this code didn't work in removing the unwanted blue-box-fill as it's not a typical focus border or outline
.