I am currently utilizing tailwindcss for my project. Within a flexbox container, I have placed a login button which appears to be stretched out.
<nav font-am class="m-6 text-xl">
<div class="flex flex-row justify-between container">
<div>
<img src="./img/Logo.png">
</div>
<div class="flex flex-row">
<a href="#"><img src="./img/AccountLog.png"></a>
<p class="hidden md:flex">My Account</p>
</div>
<div class="flex flex-row">
<a href="#"><img src="./img/love_symbol.png"></a>
<p class="hidden md:flex">My List</p>
</div>
<div class="flex box-border flex-row">
<a href="#"><img src="./img/LockLogo.png"></a>
<button class="bg-darkPink hover:underline text-white font-bold py-2 px-4 rounded-full" role="button">Sign In</button>
</div>
</div>
</nav>
When the logo is present:
The button returns to its normal appearance once the logo is removed:
How can I ensure that the button maintains its normal appearance even with the logo included? Could the size of the logo be affecting the button's display?