ghost613 commited on
Commit
d5e1f34
·
verified ·
1 Parent(s): a49e052

Update components/MathQuizApp.tsx

Browse files
Files changed (1) hide show
  1. components/MathQuizApp.tsx +2 -2
components/MathQuizApp.tsx CHANGED
@@ -64,7 +64,7 @@ const MathQuizApp = () => {
64
 
65
  return (
66
  <div className="bg-gray-50 min-h-screen flex items-center justify-center">
67
- <div className="max-w-3xl mx-auto p-8 bg-white rounded-lg shadow-md mt-4">
68
  <h1 className="text-4xl font-bold mb-8 text-center">Math Quiz App</h1>
69
  <form onSubmit={handleSubmit} className="space-y-6">
70
  <div className="flex flex-col items-center gap-6">
@@ -92,7 +92,7 @@ const MathQuizApp = () => {
92
  type="number"
93
  value={userAnswer}
94
  onChange={(e) => setUserAnswer(e.target.value)}
95
- className="bg-gray-50 border border-gray-300 text-gray-900 text-xl rounded-lg focus:ring-blue-500 focus:border-blue-500 p-4 w-64 text-center"
96
  />
97
  </div>
98
  <div className="text-center">
 
64
 
65
  return (
66
  <div className="bg-gray-50 min-h-screen flex items-center justify-center">
67
+ <div className="max-w-4xl mx-auto p-10 bg-white rounded-lg shadow-md mt-4">
68
  <h1 className="text-4xl font-bold mb-8 text-center">Math Quiz App</h1>
69
  <form onSubmit={handleSubmit} className="space-y-6">
70
  <div className="flex flex-col items-center gap-6">
 
92
  type="number"
93
  value={userAnswer}
94
  onChange={(e) => setUserAnswer(e.target.value)}
95
+ className="bg-gray-50 border border-gray-300 text-gray-900 text-xl rounded-lg focus:ring-blue-500 focus:border-blue-500 p-4 w-80 text-center"
96
  />
97
  </div>
98
  <div className="text-center">