diff --git a/src/views/preview/presentation.jsx b/src/views/preview/presentation.jsx index 4e8f2a29c..ced3f35de 100644 --- a/src/views/preview/presentation.jsx +++ b/src/views/preview/presentation.jsx @@ -379,8 +379,7 @@ const PreviewPresentation = ({ }) }} validations={{ - // TODO: actual 5000 - maxLength: 1000 + maxLength: 5000 }} value={projectInfo.instructions} /> @@ -423,8 +422,7 @@ const PreviewPresentation = ({ }) }} validations={{ - // TODO: actual 5000 - maxLength: 1000 + maxLength: 5000 }} value={projectInfo.description} /> diff --git a/src/views/preview/preview.scss b/src/views/preview/preview.scss index 075539ded..9a6fce550 100644 --- a/src/views/preview/preview.scss +++ b/src/views/preview/preview.scss @@ -470,7 +470,8 @@ $stage-width: 480px; &.has-error { .validation-message { - transform: translate(26rem, 0); + top: 100%; + right: 0; } }