style: create update view modal consistency (#2775)

This commit is contained in:
Anmol Singh Bhatia 2023-11-14 18:30:10 +05:30 committed by GitHub
parent 6797df239d
commit 1a25bacce1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ export const ProjectViewForm: React.FC<Props> = observer(({ handleFormSubmit, ha
id="description"
name="description"
placeholder="Description"
className="resize-none text-sm"
className="h-24 w-full resize-none text-sm"
hasError={Boolean(errors?.description)}
value={value}
onChange={onChange}

View File

@ -114,7 +114,7 @@ export const WorkspaceViewForm: React.FC<Props> = observer((props) => {
value={value}
placeholder="Description"
onChange={onChange}
className="h-32 resize-none text-sm"
className="h-24 w-full resize-none text-sm"
hasError={Boolean(errors?.description)}
/>
)}