From 216162e7bc78d0e993a6479f558b881bae7b48d6 Mon Sep 17 00:00:00 2001 From: Benoit-Welsch <56845767+Benoit-Welsch@users.noreply.github.com> Date: Wed, 6 Mar 2024 09:35:18 +0000 Subject: [PATCH] Fix : image-width --- src/template/Question.svelte | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/template/Question.svelte b/src/template/Question.svelte index 55b8185..842de15 100644 --- a/src/template/Question.svelte +++ b/src/template/Question.svelte @@ -33,9 +33,9 @@ {@html prompt.innerHTML}

- {question.maxLenght && question.maxLenght[i] + {question.type == 'QO' && (question.maxLenght && question.maxLenght[i]) ? question.maxLenght[i] + ' caractères maximum.' || '' - : ''} + : ''}

{/each} @@ -114,7 +114,6 @@ .prompt :global(img) { max-height: calc(297mm - 100px); max-width: 98%; - width: auto; } .answers {