7

Help pls. When I press the Button on mobile devices, a blue rectangle appears on it. How can I remove this?

<a href="#1" class="block px-4 py-2 rounded-full bg-transparent border border-dashed hover:bg-gray-200 hover:text-gray-500 hover:border-transparent hover:shadow-md active:bg-gray-300">Link button</a>

enter image description here

enter image description here

mirzo_bedil
  • 421
  • 3
  • 8

1 Answers1

24
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }

It works well.

mirzo_bedil
  • 421
  • 3
  • 8