Attempting to show a search input and button (grouped) next to a button using flexbox.
<div class="border-r border-gray-900 flex px-6 py-3 w-64">
<div class="flex flex-grow">
<input class="border flex-grow w-full" type="search" />
<button class="bg-blue-500 p-3">search</button>
</div>
<button class="bg-blue-500 p-3">+</button>
</div>
For some reason this works nicely in chrome, but the content overlaps in firefox.
How can I fix this to work in firefox? Or is there another workaround that I could use to get the same effect?