I'm using tailwind v2.1.0 with Laravel v8.12
I am trying to get hover on a tag with tailwind classes but its not working
<a href="/" class="text-gray-800 border-transparent border-b-2 hover:border-gray-600 hover:text-gray-800 px-3 py-2 text-sm font-medium uppercase">Home</a>
when I replace border-transparent with border-gray-100 or any other color, I can see the hover effect.
Initially I don't want any border that's why border-transparent was mentioned.
What could be the issue?