Improved the overall sizing of the Reading exam

This commit is contained in:
Tiago Ribeiro
2023-09-03 20:47:24 +01:00
parent 1a0ec780b9
commit 578f42d9b1
2 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ function Question({
return (
<div className="flex flex-col gap-10">
<span className="">{prompt}</span>
<div className="flex justify-between">
<div className="flex flex-wrap gap-4 justify-between">
{variant === "image" &&
options.map((option) => (
<div
@@ -90,7 +90,7 @@ export default function MultipleChoice({id, prompt, type, questions, userSolutio
return (
<>
<div className="flex flex-col gap-2 mt-4 h-full mb-20 bg-mti-gray-smoke rounded-xl px-16 py-8">
<div className="flex flex-col gap-2 mt-4 h-fit mb-20 bg-mti-gray-smoke rounded-xl px-16 py-8">
<span className="text-xl font-semibold">{prompt}</span>
{questionIndex < questions.length && (
<Question