Created
December 23, 2020 15:46
-
-
Save fayazara/90176b7db1e3977d7c3fb85d4f54ba53 to your computer and use it in GitHub Desktop.
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
| <template> | |
| <div class="mx-4 w-96"> | |
| <input | |
| type="text" | |
| placeholder="Search..." | |
| class="search-bar search-focus" | |
| /> | |
| </div> | |
| </template> | |
| <style scoped> | |
| .search-bar { | |
| @apply text-gray-600 placeholder-gray-600 rounded-md p-4 h-10 bg-gray-100 w-full border border-gray-400; | |
| } | |
| .search-focus { | |
| @apply focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent; | |
| } | |
| </style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment