I'm trying to recreate a horizontal scroll navbar with tailwind without a scrollbar on the bottom like this example (reduce the width of your screen to be able to scroll)
https://getbootstrap.com/docs/5.0/examples/blog/
I tried the following using Tailwind but I wasn't able to figure out how to remove the horizontal scrollbar that appears like the bootstrap example above. Could someone help?
<ul class="flex overflow-x-auto whitespace-nowrap p-4">
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
<li><a href="/" class="p-2">Nav Item</a></li>
</ul>