Skip to content

Commit

Permalink
feat: update input focus state
Browse files Browse the repository at this point in the history
  • Loading branch information
smbdy committed Feb 9, 2024
1 parent 228027f commit 62bc7ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const Search = ({ addresses }: { addresses: Address[] }) => {
type="text"
value={search}
onChange={(e) => setSearch(e.target.value)}
className="outline-none py-3 px-11 w-full text-xl border border-2 border-transparent focus:border-blue-200 transition-all"
className="outline-none py-3 px-11 w-full text-xl border border-4 border-transparent focus:border-blue-100 transition-all ring-inset focus:ring-1 ring-blue-300"
/>
</Box>
{results.length !== 0 &&
Expand Down

0 comments on commit 62bc7ae

Please sign in to comment.