mirror of
https://github.com/spliit-app/spliit.git
synced 2026-03-04 20:06:11 +01:00
Input font size
This commit is contained in:
@@ -64,7 +64,11 @@ export function ExpenseForm({ group, expense, onSubmit }: Props) {
|
|||||||
<FormItem className="order-1">
|
<FormItem className="order-1">
|
||||||
<FormLabel>Expense title</FormLabel>
|
<FormLabel>Expense title</FormLabel>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<Input placeholder="Monday evening restaurant" {...field} />
|
<Input
|
||||||
|
placeholder="Monday evening restaurant"
|
||||||
|
className="text-base"
|
||||||
|
{...field}
|
||||||
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
Enter a description for the expense.
|
Enter a description for the expense.
|
||||||
@@ -111,6 +115,7 @@ export function ExpenseForm({ group, expense, onSubmit }: Props) {
|
|||||||
<FormLabel>Amount</FormLabel>
|
<FormLabel>Amount</FormLabel>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<Input
|
<Input
|
||||||
|
className="text-base"
|
||||||
type="number"
|
type="number"
|
||||||
min={0.01}
|
min={0.01}
|
||||||
step={0.01}
|
step={0.01}
|
||||||
|
|||||||
@@ -67,7 +67,11 @@ export function GroupForm({ group, onSubmit }: Props) {
|
|||||||
<FormItem>
|
<FormItem>
|
||||||
<FormLabel>Group name</FormLabel>
|
<FormLabel>Group name</FormLabel>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<Input placeholder="Summer vacations" {...field} />
|
<Input
|
||||||
|
className="text-base"
|
||||||
|
placeholder="Summer vacations"
|
||||||
|
{...field}
|
||||||
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
Enter a name for your group.
|
Enter a name for your group.
|
||||||
@@ -99,7 +103,7 @@ export function GroupForm({ group, onSubmit }: Props) {
|
|||||||
</FormLabel>
|
</FormLabel>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<div className="flex gap-2">
|
<div className="flex gap-2">
|
||||||
<Input {...field} />
|
<Input className="text-base" {...field} />
|
||||||
<Button
|
<Button
|
||||||
variant="destructive"
|
variant="destructive"
|
||||||
onClick={() => remove(index)}
|
onClick={() => remove(index)}
|
||||||
|
|||||||
Reference in New Issue
Block a user