diff --git a/src/routes/home/PlayAQuiz/joinAQuiz.css b/src/routes/home/PlayAQuiz/joinAQuiz.css index a03baa5d59f0b5e8f846fb503cca2903b42b24c8..825daa066bced67f3eeb499fc02f22e130f193da 100644 --- a/src/routes/home/PlayAQuiz/joinAQuiz.css +++ b/src/routes/home/PlayAQuiz/joinAQuiz.css @@ -20,9 +20,8 @@ .quiz-info { display: flex; flex-direction: column; - justify-content: space-between; - - + justify-content: flex-start; + height: '50%'; background-color: #FEFEFE; border-radius: 10px; gap: 1rem; diff --git a/src/routes/home/PlayAQuiz/joinAQuiz.tsx b/src/routes/home/PlayAQuiz/joinAQuiz.tsx index 70162ee5bfccbaf9ac9827793d39ec494f864c8b..72f13b1e8f6486a5955512a8d8fedcc32e2a2b4d 100644 --- a/src/routes/home/PlayAQuiz/joinAQuiz.tsx +++ b/src/routes/home/PlayAQuiz/joinAQuiz.tsx @@ -85,9 +85,7 @@ export function JoinAQuiz({ loading }: paqProps) { } </div> - <div className="new-quiz"> - <button className="blueButton" onClick={handleGo}>Go !</button> - </div> + <button className="blueButton" onClick={handleGo}>Go !</button> </div> ); diff --git a/src/routes/multiplayer/PlayAQuiz/joinAQuiz.css b/src/routes/multiplayer/PlayAQuiz/joinAQuiz.css index af2eeddc3e393f0f75ae74724faa9d40353d412e..f002557908147d5b92710d22fe1bc1a50cd95a91 100644 --- a/src/routes/multiplayer/PlayAQuiz/joinAQuiz.css +++ b/src/routes/multiplayer/PlayAQuiz/joinAQuiz.css @@ -20,9 +20,8 @@ .quiz-info { display: flex; flex-direction: column; - justify-content: space-between; - - + justify-content: flex-start; + height: 50%; background-color: #FEFEFE; border-radius: 10px; gap: 1rem; diff --git a/src/routes/multiplayer/PlayAQuiz/joinAQuiz.tsx b/src/routes/multiplayer/PlayAQuiz/joinAQuiz.tsx index 851e14b714e3d15946f8f61a79ba4fb65fb63b3e..d89cbbbe38f0ccbbc9f8358dc7e67b9a5a7e0a68 100644 --- a/src/routes/multiplayer/PlayAQuiz/joinAQuiz.tsx +++ b/src/routes/multiplayer/PlayAQuiz/joinAQuiz.tsx @@ -72,11 +72,9 @@ export function JoinAQuiz({ loading }: paqProps) { )} </div> - <div className="new-quiz"> - <button className="blueButton" onClick={handleGo}> - Go ! - </button> - </div> + <button className="blueButton" onClick={handleGo}> + Go ! + </button> </div> ); }