diff options
| author | Sebastien Castiel <sebastien@castiel.me> | 2024-01-09 15:38:08 -0500 |
|---|---|---|
| committer | Sebastien Castiel <sebastien@castiel.me> | 2024-01-09 15:38:08 -0500 |
| commit | 9c728530c94460fa42a6b92ebb6cec20731f4d0b (patch) | |
| tree | 018c174b8a32867d2db0361d88df8469757c5b00 | |
| parent | 323b0ea1282abc0945cef1ebf8185bdf9a156f5d (diff) | |
Fix font size in inputs
| -rw-r--r-- | src/components/feedback-button/feedback-button-client.tsx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/components/feedback-button/feedback-button-client.tsx b/src/components/feedback-button/feedback-button-client.tsx index 16debec..96a1758 100644 --- a/src/components/feedback-button/feedback-button-client.tsx +++ b/src/components/feedback-button/feedback-button-client.tsx @@ -160,7 +160,11 @@ function FeedbackForm({ <FormItem> <FormLabel>Your email address</FormLabel> <FormControl> - <Input placeholder="your@email.com" {...field} /> + <Input + placeholder="your@email.com" + className="text-base" + {...field} + /> </FormControl> <FormDescription> Optional. Provide it if you want us to get back to you. @@ -176,7 +180,11 @@ function FeedbackForm({ <FormItem> <FormLabel>Your feedback</FormLabel> <FormControl> - <Textarea placeholder="Enter your feedback" {...field} /> + <Textarea + placeholder="Enter your feedback" + className="text-base" + {...field} + /> </FormControl> <FormMessage /> </FormItem> |
