I am striving to achieve the desired outcome but with the text in front of the input vertically aligned with the text after the input.
https://i.sstatic.net/0WTfk.png
Here is what I have created so far to accomplish that:
<div class="space-x-2 flex items-center">
<span>every</span>
<div>
<label class="mb-1 block text-sm font-semibold text-slate-700">Interval</label>
<div class="space-x-2 flex items-center">
<input type="number" class="w-24 block rounded-md text-sm border-slate-300 shadow-sm" />
<span>hour(s)</span>
</div>
</div>
</div>