I am using the TailwindCSS grid function to show the stats and their value.
I want to know how to decrease the distance/gap between the state and its value so that I can bring them closer to each other.
<script src="https://cdn.tailwindcss.com"></script>
<div class="card-content">
<div class="stat grid grid-cols-2 mb-4">
<p class="text-gray-700 font-semibold">Total:</p>
<p class="text-black">20</p>
</div>
<div class="stat grid grid-cols-2 mb-4">
<p class="text-green-500 font-semibold">Easy:</p>
<p class="text-black">20</p>
</div>
<div class="stat grid grid-cols-2 mb-4">
<p class="text-yellow-400 font-semibold">Medium:</p>
<p class="text-black">20</p>
</div>
<div class="stat grid grid-cols-2 mb-4">
<p class="text-red-500 font-semibold">Hard:</p>
<p class="text-black">20</p>
</div>
</div>