Skip to content

Commit 3f87cec

Browse files
committed
style: minor UI improvements
1 parent bc0a356 commit 3f87cec

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export function Header() {
7474

7575
<div className="space-x-2">
7676
{["list-cookies", "list-swaggers"].includes(currentView) && shouldShowAddButton() && (
77-
<Button variant="outline" size="sm" onClick={handleAddClick}>
77+
<Button className="min-w-40" variant="outline" size="sm" onClick={handleAddClick}>
7878
<PlusCircle
7979
className="h-4 w-4 mr-1"/> {activePage(currentView) === "cookies" ? 'Add New Cookie' : 'Add New Swagger'}
8080
</Button>

src/app/components/swagger/SwaggerForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export function SwaggerForm() {
8484
icon={<KeyRound size={16}/>}
8585
placeholder="Enter JWT bearer token (Ex: eyJhbGciOi...)"
8686
multiline
87-
className="min-h-52"
87+
className={"min-h-44"}
8888
required
8989
error={errors.bearerToken}
9090
/>

0 commit comments

Comments
 (0)