Skip to content

Commit 4e76fc9

Browse files
committed
Hotfix: make add button match sizing of input
1 parent b129141 commit 4e76fc9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/UploadSettingsDialog.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function UploadSettingsSheet({ children }: UploadSettingsSheetProps) {
121121
<SheetTrigger asChild>{children}</SheetTrigger>
122122
<SheetContent>
123123
<SheetHeader>
124-
<SheetTitle>Upload Settings</SheetTitle>
124+
<SheetTitle className="font-title">Upload Settings</SheetTitle>
125125
<SheetDescription className="sr-only">
126126
Configure upload behavior and file filters
127127
</SheetDescription>
@@ -143,7 +143,7 @@ function UploadSettingsSheet({ children }: UploadSettingsSheetProps) {
143143
</Tooltip>
144144
<SheetContent className="w-[400px] sm:w-[540px] flex flex-col">
145145
<SheetHeader>
146-
<SheetTitle>Upload Settings</SheetTitle>
146+
<SheetTitle className="font-title">Upload Settings</SheetTitle>
147147
<SheetDescription className="sr-only">
148148
Configure upload behavior and file filters
149149
</SheetDescription>
@@ -222,7 +222,7 @@ function UploadSettingsSheet({ children }: UploadSettingsSheetProps) {
222222
placeholder="*.tmp, .git/**"
223223
className="flex-1"
224224
/>
225-
<Button onClick={handleAddPattern} size="sm" variant="secondary">
225+
<Button onClick={handleAddPattern} variant="secondary">
226226
Add
227227
</Button>
228228
</div>

0 commit comments

Comments
 (0)