Here is my code in input.tsx
<input type="text" placeholder="Email" class="h-12 px-4 w-full h-12 px-4 placeholder-gray-500 border border-transparent rounded outline-none transition duration-200 text-gray-900 bg-gray-f7 hover:border-gray-400 focus:border-black focus:placeholder-gray-900 mb-10px bg-gray-100 " id="emailAddress" autocomplete="off" name="emailAddress" value="">
"onFocus" blue outline is coming on my UAT (not in localhost); i.e:
input[type=text]:focus {
outline: 2px solid #2d8cff !important;
outline-offset: 1px !important;
}
I have overrided this CSS with outline:none !important;
but CSS is not appearing on UAT server.