diff --git a/src/views/Create.vue b/src/views/Create.vue index 7c47228..3f01db4 100644 --- a/src/views/Create.vue +++ b/src/views/Create.vue @@ -71,7 +71,7 @@ @keydown="autoSizeDescription" @keyup="onDescChange" /> -

+

* {{ t('forms', 'Mandatory questions') }}

@@ -445,7 +445,8 @@ export default { } .form-title, - .form-desc { + .form-desc, + .info-mandatory { width: 100%; padding: 0 16px; border: none; @@ -464,11 +465,15 @@ export default { } .form-desc { font-size: 100%; + line-height: 150%; padding-bottom: 20px; resize: none; } .info-mandatory { + font-size: 100%; + padding-bottom: 20px; + resize: none; color: var(--color-text-maxcontrast); } } diff --git a/src/views/Submit.vue b/src/views/Submit.vue index 5c1325c..b48208a 100644 --- a/src/views/Submit.vue +++ b/src/views/Submit.vue @@ -28,11 +28,11 @@

{{ formTitle }}

-

- {{ form.description }} -

+ + +

{{ form.description }}

-

+

* {{ t('forms', 'Mandatory questions') }}

@@ -203,7 +203,8 @@ export default { margin-bottom: 24px; .form-title, - .form-desc { + .form-desc, + .info-mandatory { width: 100%; padding: 0 16px; border: none; @@ -221,11 +222,16 @@ export default { } .form-desc { font-size: 100%; + line-height: 150%; padding-bottom: 20px; resize: none; + white-space: pre-line; } .info-mandatory { + font-size: 100%; + padding-bottom: 20px; + resize: none; color: var(--color-text-maxcontrast); } }