diff --git a/src/components/Quiz/QuizQuestion.tsx b/src/components/Quiz/QuizQuestion.tsx index 685c1cb421108cc4dc774a66ef706ad4ba6a05ab..0ad4b2e87a43eb3f653b844960d46e5cc0b1d352 100644 --- a/src/components/Quiz/QuizQuestion.tsx +++ b/src/components/Quiz/QuizQuestion.tsx @@ -1,5 +1,5 @@ import React, { useEffect } from 'react' -import './quizQuestion.scss' +import './QuizBegin.scss' import { UserChallenge } from 'models' interface QuizQuestion { @@ -18,7 +18,7 @@ const QuizQuestion: React.FC<QuizQuestion> = ({ }, []) return ( <> - <div> + <div className="quiz-begin-container"> <p>1/5</p> <p>{userChallenge.quiz.questions[0].questionLabel}</p> {userChallenge.quiz.questions[0].answers.map((answer, index) => {