diff --git a/src/App.tsx b/src/App.tsx index 82bacfd..22caa71 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -97,16 +97,16 @@ const App = () => { return (
{/* Theme Toggle Button */} @@ -256,8 +256,8 @@ const App = () => { setNewReview({ ...newReview, text: e.target.value }) } className={`w-full px-3 py-2 border rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 ${theme === "dark" - ? "border-slate-600 bg-slate-700 text-white" - : "border-slate-300 bg-white text-slate-900" + ? "border-slate-600 bg-slate-700 text-white" + : "border-slate-300 bg-white text-slate-900" }`} rows={4} placeholder="Share your experience working with Maaz..." @@ -268,8 +268,8 @@ const App = () => {