mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-27 09:56:12 +01:00
Fix font size in inputs
This commit is contained in:
@@ -160,7 +160,11 @@ function FeedbackForm({
|
|||||||
<FormItem>
|
<FormItem>
|
||||||
<FormLabel>Your email address</FormLabel>
|
<FormLabel>Your email address</FormLabel>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<Input placeholder="your@email.com" {...field} />
|
<Input
|
||||||
|
placeholder="your@email.com"
|
||||||
|
className="text-base"
|
||||||
|
{...field}
|
||||||
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
Optional. Provide it if you want us to get back to you.
|
Optional. Provide it if you want us to get back to you.
|
||||||
@@ -176,7 +180,11 @@ function FeedbackForm({
|
|||||||
<FormItem>
|
<FormItem>
|
||||||
<FormLabel>Your feedback</FormLabel>
|
<FormLabel>Your feedback</FormLabel>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<Textarea placeholder="Enter your feedback" {...field} />
|
<Textarea
|
||||||
|
placeholder="Enter your feedback"
|
||||||
|
className="text-base"
|
||||||
|
{...field}
|
||||||
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormMessage />
|
<FormMessage />
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
|||||||
Reference in New Issue
Block a user