JSFiddle - React, Tailwind, and code Playground
by tomik23
HTML
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<div class="p-10">
<div class="inline-block">
<button class="hover:bg-red-400 bg-blue-600 mt-5 text-white font-bold py-2 px-4 rounded shadow">Button</button>
<button class="hover:bg-blue-600 bg-green-600 mt-5 text-white font-bold py-2 px-4 rounded shadow">Button</button>
<button class="bg-white hover:bg-gray-100 text-gray-800 font-semibold py-2 px-4 border border-gray-400 rounded shadow">Button</button>
</div>
</div>