Skip to content

Commit

Permalink
Merge pull request #182 from gruz0/ui/fix-colors-in-the-feedback-form
Browse files Browse the repository at this point in the history
Fix colors and styling in the feedback form
  • Loading branch information
gruz0 authored Nov 23, 2024
2 parents 33b7d95 + 6b2918d commit 09d8d43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/FeedbackForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const FeedbackForm: React.FC<FeedbackFormProps> = ({ 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}
/>
Expand All @@ -48,7 +48,7 @@ const FeedbackForm: React.FC<FeedbackFormProps> = ({ 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}
/>

Expand Down

0 comments on commit 09d8d43

Please sign in to comment.