diff --git a/src/app/(app)/~/[repo]/_components/repo-contents.tsx b/src/app/(app)/~/[repo]/_components/repo-contents.tsx index 2565249..5c56f2f 100644 --- a/src/app/(app)/~/[repo]/_components/repo-contents.tsx +++ b/src/app/(app)/~/[repo]/_components/repo-contents.tsx @@ -96,7 +96,7 @@ export default function RepoContents({ repo, setIsConfigDialogOpen }: Props) { - diff --git a/src/app/(auth)/login/page.tsx b/src/app/(auth)/login/page.tsx index aa0f1b9..1884541 100644 --- a/src/app/(auth)/login/page.tsx +++ b/src/app/(auth)/login/page.tsx @@ -1,6 +1,6 @@ import { signIn } from '@/auth'; import GitHubIcon from '@/components/icons/github'; -import GitlabIcon from '@/components/icons/gitlab'; +import GitLabIcon from '@/components/icons/gitlab'; import GitLoomIcon from '@/components/icons/gitloom'; import GitLoomTextIcon from '@/components/icons/gitloom-text'; import { Button } from '@/components/ui/button'; @@ -53,13 +53,13 @@ export default async function Page() { }); }} > - - diff --git a/src/components/icons/gitlab.tsx b/src/components/icons/gitlab.tsx index 0f48ad7..77c773c 100644 --- a/src/components/icons/gitlab.tsx +++ b/src/components/icons/gitlab.tsx @@ -1,4 +1,4 @@ -export default function GitlabIcon(props: React.SVGProps) { +export default function GitLabIcon(props: React.SVGProps) { return ( GitLab diff --git a/src/components/ui/button.tsx b/src/components/ui/button.tsx index da78696..c1d46be 100644 --- a/src/components/ui/button.tsx +++ b/src/components/ui/button.tsx @@ -19,8 +19,8 @@ const buttonVariants = cva( link: 'text-primary underline-offset-4 hover:underline', }, size: { - default: 'h-9 px-4 py-2 has-[>svg]:px-3', - sm: 'h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5', + default: 'h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5', + md: 'h-9 px-4 py-2 has-[>svg]:px-3', lg: 'h-10 rounded-md px-6 has-[>svg]:px-4', icon: 'size-9', 'icon-sm': 'size-8', @@ -28,7 +28,7 @@ const buttonVariants = cva( }, defaultVariants: { variant: 'default', - size: 'sm', + size: 'default', }, }, ); diff --git a/src/components/ui/select.tsx b/src/components/ui/select.tsx index 45df3af..84423d2 100644 --- a/src/components/ui/select.tsx +++ b/src/components/ui/select.tsx @@ -20,18 +20,18 @@ function SelectValue({ ...props }: React.ComponentProps & { - size?: 'sm' | 'default'; + size?: 'default' | 'md'; }) { return (