How’s everyone been doing? been a while since i’ve started making something with bab, but i notice this weird orange border around the canvas on android device anytime it registers a click event, i tried border-color: transparent but it’s still the same here
Looks like it might be the outline: android - Disable orange outline highlight on focus - Stack Overflow
1 Like
It’s working now, I tried
-webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
-webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
outline: none !important;
1 Like