From 0053b49702dd084927321658832a9bed359257e0 Mon Sep 17 00:00:00 2001 From: Maaz Khokhar Date: Sat, 3 Jan 2026 12:52:11 -0600 Subject: [PATCH] Refactor theme-related class names for consistency in App component --- src/App.tsx | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) 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 = () => {