Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/question/components/QuestionContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface QuestionContentProps {
export default function QuestionContent({ id, text }: QuestionContentProps) {
return (
<div className="w-full">
<p className="mb-3.75 text-3xl font-bold text-white md:mb-10 md:text-5xl">{`Q${id}.`}</p>
<p className="text-3xl font-bold text-white md:text-5xl">{`Q${id}.`}</p>
<p className="text-2xl font-semibold whitespace-pre-line text-white md:text-4xl">
{text}
</p>
Expand Down
4 changes: 2 additions & 2 deletions src/app/question/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export default function QuestionPage() {

return (
<div className="container flex min-h-dvh flex-col items-center justify-between md:justify-start">
<main className="mb-10 w-full md:mb-20">
<div className="grid w-full gap-y-10">
<main className="mb-10 w-full md:mb-10">
<div className="grid w-full gap-y-8">
<QuestionContent text={question.question} id={question.id} />
<RadioGroup onChange={handleChange} active={answers[question.id]} />
</div>
Expand Down