Created
March 15, 2020 18:55
-
-
Save nraloux/b09a1ccaccbbfda2276b456ca9593239 to your computer and use it in GitHub Desktop.
tailwind checkbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.custom-label input:checked + svg { | |
display: block !important; | |
} | |
</style> | |
<label class="custom-label flex"> | |
<div class="bg-white shadow w-6 h-6 p-1 flex justify-center items-center mr-2"> | |
<input type="checkbox" class="hidden" checked> | |
<svg class="hidden w-4 h-4 text-green-600 pointer-events-none" viewBox="0 0 172 172"><g fill="none" stroke-width="none" stroke-miterlimit="10" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode:normal"><path d="M0 172V0h172v172z"/><path d="M145.433 37.933L64.5 118.8658 33.7337 88.0996l-10.134 10.1341L64.5 139.1341l91.067-91.067z" fill="currentColor" stroke-width="1"/></g></svg> | |
</div> | |
<span class="select-none"> This is a sample checkbox. All the text will toggle the state</span> | |
</label> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment