Diable Focus -Taste CSS
*:focus {
outline: 0 !important;
}
Delightful Dunlin
*:focus {
outline: 0 !important;
}
button {
outline: none;
}
button {
outline: none;
}
.btn:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.btn:focus {
outline: none !important;
}
.btn:focus {
box-shadow: none;
}
button:focus {outline:0;}
using outline:none; we can remove that border in chrome
for tailwind css :
outline-none
focus:outline-none
For chakra UI, use this bellow code
*:focus {
box-shadow: none !important;
}
*[data-focus] {
box-shadow: none !important;
}