fix(question): image size

This commit is contained in:
Ralex
2025-10-26 12:05:26 +01:00
parent e0850efe09
commit 8fe973369a
2 changed files with 2 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ const Answers = ({
<img <img
alt={question} alt={question}
src={image} src={image}
className="h-48 max-h-60 w-auto rounded-md" className="m-4 h-full max-h-[400px] min-h-[200px] w-auto rounded-md"
/> />
)} )}
</div> </div>

View File

@@ -27,7 +27,7 @@ const Question = ({ data: { question, image, cooldown } }: Props) => {
<img <img
alt={question} alt={question}
src={image} src={image}
className="h-48 max-h-60 w-auto rounded-md" className="m-4 h-full max-h-[400px] min-h-[200px] w-auto rounded-md"
/> />
)} )}
</div> </div>