Minor changes

This commit is contained in:
freearhey 2023-12-08 20:35:20 +03:00
parent 63cbc15550
commit 8988c6f541
2 changed files with 9 additions and 5 deletions

View file

@ -26,9 +26,11 @@
<div> <div>
<label for="search-input" class="sr-only">Search</label> <label for="search-input" class="sr-only">Search</label>
<div class="relative mt-1"> <div class="relative mt-1">
<div class="flex absolute inset-y-0 left-0 items-center pl-3 pointer-events-none"> <div
class="flex absolute inset-y-0 left-0 items-center pl-3 pointer-events-none text-gray-500 dark:text-gray-400"
>
<svg <svg
class="w-5 h-5 text-gray-500 dark:text-gray-400" class="w-5 h-5"
fill="currentColor" fill="currentColor"
viewBox="0 0 20 20" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"

View file

@ -11,9 +11,11 @@
<div class="w-full"> <div class="w-full">
<label for="search-input" class="sr-only">Search</label> <label for="search-input" class="sr-only">Search</label>
<div class="relative w-full"> <div class="relative w-full">
<div class="flex absolute inset-y-0 left-0 items-center pl-3 pointer-events-none"> <div
class="flex absolute inset-y-0 left-0 items-center pl-3 pointer-events-none text-gray-500 dark:text-gray-400"
>
<svg <svg
class="w-4 h-4 text-gray-500 dark:text-gray-400" class="w-5 h-5"
fill="currentColor" fill="currentColor"
viewBox="0 0 20 20" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
@ -29,7 +31,7 @@
type="search" type="search"
id="search-input" id="search-input"
bind:value={$query} bind:value={$query}
class="bg-gray-50 border border-gray-300 text-gray-900 outline-blue-500 text-sm rounded-md block w-full pl-9 p-1.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white" class="bg-gray-50 border border-gray-300 text-gray-900 outline-blue-500 text-sm rounded-md block w-full pl-10 p-1.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white"
placeholder="Search" placeholder="Search"
/> />
</div> </div>