diff --git a/src/components/base/TextField.jsx b/src/components/base/TextField.jsx index d23b105..c838f75 100644 --- a/src/components/base/TextField.jsx +++ b/src/components/base/TextField.jsx @@ -41,7 +41,13 @@ const styles = theme => ({ bottomRight: { fontSize: '15px', gridRowStart: 4, - gridColumnStart: 12 + gridColumnStart: 12, + whiteSpace: 'nowrap' + }, + bottomLeft: { + fontSize: '15px', + gridRowStart: 4, + gridColumnStart: 1, } }) @@ -63,14 +69,17 @@ function Input({ isRequired, label, bottomRightLabel, + bottomLeftLabel, placeholder, className, name, onChange, onBlur, - value + value, + multiline }) { const labelForm = label ? renderLabel(classnames(classes.formLabel, classes.top), idFor, label, isRequired) : null + const bottomLeft = bottomLeftLabel ? renderLabel(classnames(classes.formLabel, classes.bottomLeft), idFor, bottomLeftLabel) : null const bottomRight = bottomRightLabel ? renderLabel(classnames(classes.formLabel, classes.bottomRight), idFor, bottomRightLabel) : null return ( @@ -86,7 +95,9 @@ function Input({ }} onBlur={onBlur} value={value} + multiline={multiline} /> + { bottomLeft } { bottomRight } ) diff --git a/src/components/projects/CreateProject.jsx b/src/components/projects/CreateProject.jsx index 00fa967..da80c39 100644 --- a/src/components/projects/CreateProject.jsx +++ b/src/components/projects/CreateProject.jsx @@ -209,60 +209,33 @@ const SubmissionSection = ({ classes, history }) => { isRequired={true} idFor="Project Name" name="title" - label="Enter Project Name" + label="Project Name" bottomRightLabel="Max 20" - placeholder="Enter Project Name" + placeholder="Project Name" onChange={handleChange} onBlur={handleBlur} value={values.title || ''} /> - - - {
-