Sha256: 393b0057317176c593ebe10bce026811a7867d318840390aef50c228f5eb16cc
Contents?: true
Size: 1.91 KB
Versions: 29
Compression:
Stored size: 1.91 KB
Contents
<!-- This example requires some changes to your config: ``` // tailwind.config.js module.exports = { // ... plugins: [ // ... require('@tailwindcss/forms'), ], } ``` --> <fieldset class="space-y-5"> <legend class="sr-only">Notifications</legend> <div class="relative flex items-start"> <div class="flex h-5 items-center"> <input id="comments" aria-describedby="comments-description" name="comments" type="checkbox" class="h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500"> </div> <div class="ml-3 text-sm"> <label for="comments" class="font-medium text-gray-700">New comments</label> <span id="comments-description" class="text-gray-500"><span class="sr-only">New comments </span>so you always know what's happening.</span> </div> </div> <div class="relative flex items-start"> <div class="flex h-5 items-center"> <input id="candidates" aria-describedby="candidates-description" name="candidates" type="checkbox" class="h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500"> </div> <div class="ml-3 text-sm"> <label for="candidates" class="font-medium text-gray-700">New candidates</label> <span id="candidates-description" class="text-gray-500"><span class="sr-only">New candidates </span>who apply for any open postings.</span> </div> </div> <div class="relative flex items-start"> <div class="flex h-5 items-center"> <input id="offers" aria-describedby="offers-description" name="offers" type="checkbox" class="h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500"> </div> <div class="ml-3 text-sm"> <label for="offers" class="font-medium text-gray-700">Offers</label> <span id="offers-description" class="text-gray-500"><span class="sr-only">Offers </span>when they are accepted or rejected by candidates.</span> </div> </div> </fieldset>
Version data entries
29 entries across 29 versions & 1 rubygems