feat: enhance course and organization editing interfaces with improved text formatting and layout adjustments

This commit is contained in:
swve 2025-06-01 22:23:19 +02:00
parent 7139448195
commit 40414e9478
3 changed files with 4 additions and 5 deletions

View file

@ -185,7 +185,7 @@ function EditCourseGeneral(props: EditCourseStructureProps) {
<FormLabelAndMessage label="About" message={formik.errors.about} />
<Form.Control asChild>
<Textarea
style={{ backgroundColor: 'white' }}
style={{ backgroundColor: 'white', height: '200px', minHeight: '200px' }}
onChange={formik.handleChange}
value={formik.values.about}
required

View file

@ -205,7 +205,7 @@ const OrgEditGeneral: React.FC = () => {
value={values.about}
onChange={handleChange}
placeholder="Detailed description of your organization"
className="min-h-[150px]"
className="min-h-[250px]"
maxLength={400}
/>
{touched.about && errors.about && (