Sha256: b53a35abb8c02e26caebcced5ae49bd41cdda251df299aed8154a71ea635d540
Contents?: true
Size: 909 Bytes
Versions: 29
Compression:
Stored size: 909 Bytes
Contents
<!-- This example requires some changes to your config: ``` // tailwind.config.js module.exports = { // ... plugins: [ // ... require('@tailwindcss/forms'), ], } ``` --> <div> <label for="price" class="block text-sm font-medium text-gray-700">Price</label> <div class="relative mt-1 rounded-md shadow-sm"> <div class="pointer-events-none absolute inset-y-0 left-0 flex items-center pl-3"> <span class="text-gray-500 sm:text-sm">$</span> </div> <input type="text" name="price" id="price" class="block w-full rounded-md border-gray-300 pl-7 pr-12 focus:border-indigo-500 focus:ring-indigo-500 sm:text-sm" placeholder="0.00" aria-describedby="price-currency"> <div class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-3"> <span class="text-gray-500 sm:text-sm" id="price-currency">USD</span> </div> </div> </div>
Version data entries
29 entries across 29 versions & 1 rubygems