I use UI Kitten + expo + react-native-web for my project, when I open my app in ios browsers, e.g. chrome, safari, the text input when focused has this blue outline, for example: (I can't post images so I will post the links here, sorry for the inconvenience)
On desktop browsers and android browsers, this blue outline does not show, it only appears in iOS browsers, how do I get rid of it?
Thanks!
/* Remove outline for non-keyboard :focus */
*:focus:not(.focus-visible) {
outline: none;
}
/* Optional: Customize .focus-visible */
.focus-visible {
outline-color: lightgreen;
}
https://stackoverflow.com/a/50570972/16837273 I believe this is what your looking for