Skip to content

Commit

Permalink
fix: Padding issue in the container of form name
Browse files Browse the repository at this point in the history
  • Loading branch information
GosuCode committed Oct 8, 2023
1 parent 2fd673e commit ef8bd5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Dashboard/FormEdit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const FormEdit: React.FC<FormEditProps> = ({ reviewForm, onStepChange }) => {
<div className="relative mt-4 w-fit">
<input
disabled={form.formState.isSubmitting}
className="w-[7.5rem] rounded bg-transparent px-1 py-1 text-xl font-bold outline-dashed outline-1 outline-transparent duration-100 hover:outline-gray-300 focus:outline-gray-300"
className="w-auto rounded bg-transparent px-1 py-1 text-xl font-bold outline-dashed outline-1 outline-transparent duration-100 hover:outline-gray-300 focus:outline-gray-300"
{...field}
/>
<Image
Expand Down

0 comments on commit ef8bd5e

Please sign in to comment.