Skip to content

Commit 87054e9

Browse files
committed
chore: update sizes
1 parent 8ecd0e8 commit 87054e9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

site/src/pages/CreateWorkspacePage/ExternalAuthButton.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ export const ExternalAuthButton: FC<ExternalAuthButtonProps> = ({
3232
<span className="flex flex-row items-center gap-2">
3333
{auth.display_icon && (
3434
<ExternalImage
35-
className="w-6 h-6"
35+
className="w-5 h-5"
3636
src={auth.display_icon}
3737
alt={`${auth.display_name} Icon`}
3838
/>
3939
)}
40-
<p className="font-semibold m-0">{auth.display_name}</p>
40+
<p className="font-semibold text-sm m-0">{auth.display_name}</p>
4141
{!auth.optional && (
4242
<Badge size="sm" variant={error ? "destructive" : "warning"}>
4343
Required
@@ -48,8 +48,8 @@ export const ExternalAuthButton: FC<ExternalAuthButtonProps> = ({
4848
<span className="flex flex-row items-center gap-2">
4949
{auth.authenticated ? (
5050
<>
51-
<Check className="w-5 h-5 text-content-success" />
52-
<p className="text-sm font-semibold text-content-secondary m-0">
51+
<Check className="w-4 h-4 text-content-success" />
52+
<p className="text-xs font-semibold text-content-secondary m-0">
5353
Authenticated
5454
</p>
5555
</>

0 commit comments

Comments
 (0)