Skip to content

Commit

Permalink
justify size
Browse files Browse the repository at this point in the history
  • Loading branch information
liangfung committed Apr 25, 2024
1 parent 6bb0b12 commit a7dc4d8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export const NewRepository = () => {
<Button
onClick={() => router.back()}
variant={'ghost'}
className="px-1"
className="px-1 h-6"
>
<IconChevronLeft className="h-6 w-6" />
<IconChevronLeft className="h-5 w-5" />
</Button>
<span className="ml-2">Create Generic git repository</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const GitProviderForm = React.forwardRef<
className="flex cursor-pointer items-center gap-1"
htmlFor="github"
>
<IconGitHub className="h-6 w-6" />
<IconGitHub className="h-5 w-5" />
<span>GitHub.com</span>
</Label>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ const DetailPage: React.FC = () => {
<Button
onClick={() => router.back()}
variant={'ghost'}
className="px-1"
className="px-1 h-6"
>
<IconChevronLeft className="h-6 w-6" />
<IconChevronLeft className="h-5 w-5" />
</Button>
<span className="ml-2">Provider information</span>
</div>
<div className="flex items-center gap-2 text-base">
<IconGitHub className="h-6 w-6" />
<IconGitHub className="h-5 w-5" />
GitHub.com
<div className="ml-1">
{provider?.connected ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ export const NewProvider = () => {
<Button
onClick={() => router.back()}
variant={'ghost'}
className="px-1"
className="px-1 h-6"
>
<IconChevronLeft className="h-6 w-6" />
<IconChevronLeft className="h-5 w-5" />
</Button>
<span className="ml-2">Create Git Provider</span>
</div>
Expand Down

0 comments on commit a7dc4d8

Please sign in to comment.