Sha256: ba1989985d8c5fd0f911b57fddb93b72da16076f07632766d6866df37d856b73
Contents?: true
Size: 1.64 KB
Versions: 29
Compression:
Stored size: 1.64 KB
Contents
<!-- This example requires some changes to your config: ``` // tailwind.config.js module.exports = { // ... plugins: [ // ... require('@tailwindcss/forms'), ], } ``` --> <div> <div class="sm:hidden"> <label for="tabs" class="sr-only">Select a tab</label> <!-- Use an "onChange" listener to redirect the user to the selected tab URL. --> <select id="tabs" name="tabs" class="block w-full rounded-md border-gray-300 focus:border-indigo-500 focus:ring-indigo-500"> <option>My Account</option> <option>Company</option> <option selected>Team Members</option> <option>Billing</option> </select> </div> <div class="hidden sm:block"> <div class="border-b border-gray-200"> <nav class="-mb-px flex" aria-label="Tabs"> <!-- Current: "border-indigo-500 text-indigo-600", Default: "border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300" --> <a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 w-1/4 py-4 px-1 text-center border-b-2 font-medium text-sm">My Account</a> <a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 w-1/4 py-4 px-1 text-center border-b-2 font-medium text-sm">Company</a> <a href="#" class="border-indigo-500 text-indigo-600 w-1/4 py-4 px-1 text-center border-b-2 font-medium text-sm" aria-current="page">Team Members</a> <a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 w-1/4 py-4 px-1 text-center border-b-2 font-medium text-sm">Billing</a> </nav> </div> </div> </div>
Version data entries
29 entries across 29 versions & 1 rubygems