Skip to content

Commit 1c75fff

Browse files
authored
Fix: Adjust sidebar padding for better layout (#963)
1 parent 5af4b84 commit 1c75fff

File tree

3 files changed

+2
-22
lines changed

3 files changed

+2
-22
lines changed

.env.example

Lines changed: 0 additions & 20 deletions
This file was deleted.

src/app/_components/task-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export function TaskForm<T extends FieldValues>({
3939
<Form {...form}>
4040
<form
4141
onSubmit={form.handleSubmit(onSubmit)}
42-
className="flex flex-col gap-4"
42+
className="flex flex-col gap-4 px-4"
4343
>
4444
<FormField
4545
control={form.control}

src/app/_components/update-task-sheet.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function UpdateTaskSheet({ task, ...props }: UpdateTaskSheetProps) {
6262

6363
return (
6464
<Sheet {...props}>
65-
<SheetContent className="flex flex-col gap-6 sm:max-w-md">
65+
<SheetContent className="flex flex-col gap-6 sm:max-w-md ">
6666
<SheetHeader className="text-left">
6767
<SheetTitle>Update task</SheetTitle>
6868
<SheetDescription>

0 commit comments

Comments
 (0)