diff options
Diffstat (limited to 'src/components/group-form.tsx')
| -rw-r--r-- | src/components/group-form.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/components/group-form.tsx b/src/components/group-form.tsx index 9841cc5..5ddc865 100644 --- a/src/components/group-form.tsx +++ b/src/components/group-form.tsx @@ -67,7 +67,11 @@ export function GroupForm({ group, onSubmit }: Props) { <FormItem> <FormLabel>Group name</FormLabel> <FormControl> - <Input placeholder="Summer vacations" {...field} /> + <Input + className="text-base" + placeholder="Summer vacations" + {...field} + /> </FormControl> <FormDescription> Enter a name for your group. @@ -99,7 +103,7 @@ export function GroupForm({ group, onSubmit }: Props) { </FormLabel> <FormControl> <div className="flex gap-2"> - <Input {...field} /> + <Input className="text-base" {...field} /> <Button variant="destructive" onClick={() => remove(index)} |
