There seems to be a spacing issue when using tailwind v3.4.3 on the Tailwind Playground, with extra space added between span elements.
<div>
<p>
<span class="bg-slate-800">TEST</span>
<span class="bg-orange-600">TEST 2</span>
<span class="bg-yellow-500">TEST 3</span>
</p>
</div>
If you copy and paste the above code on play.tailwindcss.com, you can see the additional space between span elements.
https://i.sstatic.net/8MM5lzjT.png
However, when attempting a similar setup in Nuxt 3 with Tailwind installation, the space between span elements is missing.
https://i.sstatic.net/V0LeNsqt.png
I have already configured Nuxt and Tailwind settings, as seen in this editor link.
Even after installing Tailwind using Nuxt modules '@nuxtjs/tailwindcss', the issue remains unresolved.
Currently in the process of migrating my project from Nuxt 2 to Nuxt 3, where Nuxt 2 exhibited behavior similar to Tailwind CSS Playground, but in Nuxt 3 it's causing issues.
Resolving this spacing problem would greatly benefit the project.