mirror of
https://github.com/spliit-app/spliit.git
synced 2025-12-06 09:29:39 +01:00
Fix font size in inputs
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user