diff --git a/src/components/Project/ManageProjectInfo.jsx b/src/components/Project/ManageProjectInfo.jsx index 4b5d6abf..f042abfa 100644 --- a/src/components/Project/ManageProjectInfo.jsx +++ b/src/components/Project/ManageProjectInfo.jsx @@ -122,18 +122,9 @@ const ManageProjectInfo = ({ project, handleSubmitForm, onClose }) => { }; return ( -
-
-
- + +
+
{project?.id ? "Edit Project" : "Create Project"} @@ -148,7 +139,7 @@ const ManageProjectInfo = ({ project, handleSubmitForm, onClose }) => { type="text" id="name" name="name" - className="form-control" + className="form-control form-control-sm" placeholder="Project Name" {...register("name")} /> @@ -169,7 +160,7 @@ const ManageProjectInfo = ({ project, handleSubmitForm, onClose }) => { type="text" id="shortName" name="shortName" - className="form-control" + className="form-control form-control-sm" placeholder="Short Name" {...register("shortName")} /> @@ -190,7 +181,7 @@ const ManageProjectInfo = ({ project, handleSubmitForm, onClose }) => { type="text" id="contactPerson" name="contactPerson" - className="form-control" + className="form-control form-control-sm" placeholder="Contact Person" maxLength={50} {...register("contactPerson")} @@ -252,7 +243,7 @@ const ManageProjectInfo = ({ project, handleSubmitForm, onClose }) => {