BROKEN quick save

This commit is contained in:
Mawoka
2023-01-18 20:34:37 +01:00
parent 0f000987ca
commit 6788b32131
5 changed files with 128 additions and 25 deletions
@@ -371,6 +371,18 @@
</div>
{/each}
</div>
{:else if question.type === QuizQuestionType.ORDER}
<ul class="flex flex-col gap-4 m-4 p-6">
{#each question.answers as answer}
<li
class="p-1 rounded-lg py-3 dark:bg-gray-500 bg-gray-300"
>
<h4 class="text-center">
{answer.answer}
</h4>
</li>
{/each}
</ul>
{:else if question.type === QuizQuestionType.SLIDE}
<div
use:viewport