Skip to content

Instantly share code, notes, and snippets.

@fayazara
Created December 23, 2020 15:46
Show Gist options
  • Select an option

  • Save fayazara/90176b7db1e3977d7c3fb85d4f54ba53 to your computer and use it in GitHub Desktop.

Select an option

Save fayazara/90176b7db1e3977d7c3fb85d4f54ba53 to your computer and use it in GitHub Desktop.
<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