Skip to content

Commit

Permalink
added style to search
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignaherrero committed Apr 7, 2022
1 parent a7acedc commit 3bc1206
Showing 1 changed file with 53 additions and 9 deletions.
62 changes: 53 additions & 9 deletions pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,59 @@ export default function Home() {
return (
<>
<form onSubmit={handleSubmit(onSubmit)}>
<input
{...register("article", { required: true, maxLength: 80 })}
placeholder="ingresar articulo"
/>
<p>
<input {...register("relevant")} type="checkbox" value="relevance" />
relevante
</p>
<button type="submit">Submit</button>
<div class="flex justify-center">
<div class="mb-3 xl:w-96">
<div class="input-group relative flex flex-wrap items-stretch w-full mb-4">
<input
type="search"
class="form-control relative flex-auto min-w-0 block px-3 py-1.5 text-base font-normal text-gray-700 bg-white bg-clip-padding border border-solid border-gray-300 rounded transition ease-in-out m-0 focus:text-gray-700 focus:bg-white focus:border-blue-600 focus:outline-none"
placeholder="Search"
aria-label="Search"
aria-describedby="button-addon2"
{...register("article", { required: true, maxLength: 80 })}
placeholder="ingresar articulo"
/>
<button
class="btn inline-block px-6 py-2.5 bg-blue-600 text-white font-medium text-xs leading-tight uppercase rounded shadow-md hover:bg-blue-700 hover:shadow-lg focus:bg-blue-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-blue-800 active:shadow-lg transition duration-150 ease-in-out flex items-center"
type="button"
id="button-addon2"
type="submit"
>
<svg
aria-hidden="true"
focusable="false"
data-prefix="fas"
data-icon="search"
class="w-4"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
>
<path
fill="currentColor"
d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"
></path>
</svg>
</button>
</div>
<div class="form-check">
<input
{...register("relevant")}
type="checkbox"
value="relevance"
class="form-check-input appearance-none h-4 w-4 border border-gray-300 rounded-sm bg-white checked:bg-blue-600 checked:border-blue-600 focus:outline-none transition duration-200 mt-1 align-top bg-no-repeat bg-center bg-contain float-left mr-2 cursor-pointer"
id="flexCheckDefault"
/>
<label
class="form-check-label inline-block text-gray-800"
for="flexCheckDefault"
>
Relevante
</label>
</div>
</div>
</div>

</form>
{articles.found === "notfound" && (
<>
Expand Down

0 comments on commit 3bc1206

Please sign in to comment.