Skip to content

Commit

Permalink
Change padding on the Input component
Browse files Browse the repository at this point in the history
  • Loading branch information
franekmagiera committed Jan 16, 2024
1 parent fff8ea1 commit 12b8fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export function Input(props: JSX.HTMLAttributes<HTMLInputElement>) {
return (
<input
{...props}
className="block w-full rounded-md border-0 py-1.5 pl-7 pr-20 text-gray-900 ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"
className="block w-full rounded-md border-0 py-1.5 pl-3 pr-3 text-gray-900 ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"
/>
);
}

0 comments on commit 12b8fce

Please sign in to comment.