I am designing a form using tailwind and this is one of the element of it.
<label class="bg-gray-500 rounded rounded-r-none p-2">#</label>
<input type="text" class="rounded rounded-l-none focus:outline-none p-2 -ml-2">
and it shows like this, as you can see i have added p-2 to both so ideally i want both height to be same, but obviously that's not the case because input brings some default height. so how do i make both of them same height ?
