From 6b2918d0717841c05d745ee26189b3cf13d6e842 Mon Sep 17 00:00:00 2001 From: Alexander Kadyrov Date: Sun, 24 Nov 2024 02:58:26 +0400 Subject: [PATCH] Fix colors and styling in the feedback form --- src/components/FeedbackForm.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/FeedbackForm.tsx b/src/components/FeedbackForm.tsx index 7dddcd4..b8972ec 100644 --- a/src/components/FeedbackForm.tsx +++ b/src/components/FeedbackForm.tsx @@ -38,7 +38,7 @@ const FeedbackForm: React.FC = ({ onSubmit, onClose }) => { placeholder="Enter your feedback here (optional)" value={feedback} onChange={handleFeedbackChange} - className="mb-4 w-full rounded border p-2 md:text-lg" + className="mb-4 w-full rounded border p-2 md:text-lg dark:text-gray-900" rows={4} maxLength={4096} /> @@ -48,7 +48,7 @@ const FeedbackForm: React.FC = ({ onSubmit, onClose }) => { placeholder="Your contact details (optional)" value={contact} onChange={handleContactChange} - className="mb-4 w-full rounded border p-2 md:text-lg" + className="mb-4 w-full rounded border p-2 md:text-lg dark:text-gray-900" maxLength={128} />