How do I eliminate the space below the badge component without using padding or margins? I suspect it may be related to line-height, but I want the badge height to perfectly match its content. Any suggestions on how to achieve this?
https://i.sstatic.net/lHbvM.png
<div class="flex w-full">
<span class="badge inline-block leading-3 overflow-hidden rounded select-none cursor-pointer white py-0.5 px-1.5 text-xs mr-0.5" style="background-color: rgb(13, 155, 131);">
Feature
</span>
</div>
Playtailwind link: https://play.tailwindcss.com/arRAQd01di
Update:
After removing the inner div, the issue seems to be resolved. Can someone explain why?