From d473f18bb73cf27aef4bcb809c26342d92eb1f27 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Wed, 14 Aug 2024 15:51:21 -0400 Subject: [PATCH 1/2] fix(clerk-js): Application logo rendering size --- packages/clerk-js/src/ui/elements/ApplicationLogo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/clerk-js/src/ui/elements/ApplicationLogo.tsx b/packages/clerk-js/src/ui/elements/ApplicationLogo.tsx index cec97054186..d792f4294f2 100644 --- a/packages/clerk-js/src/ui/elements/ApplicationLogo.tsx +++ b/packages/clerk-js/src/ui/elements/ApplicationLogo.tsx @@ -61,7 +61,7 @@ export const ApplicationLogo = (props: ApplicationLogoProps) => { {...props} sx={[ theme => ({ - height: getContainerHeightForImageRatio(imageRef, theme.sizes.$4), + height: getContainerHeightForImageRatio(imageRef, theme.sizes.$6), justifyContent: 'center', }), props.sx, From 7f188299660340c82b141c15f265484e8a4eafa1 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Wed, 14 Aug 2024 16:03:28 -0400 Subject: [PATCH 2/2] add changeset --- .changeset/fair-squids-deny.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fair-squids-deny.md diff --git a/.changeset/fair-squids-deny.md b/.changeset/fair-squids-deny.md new file mode 100644 index 00000000000..9234e4f494f --- /dev/null +++ b/.changeset/fair-squids-deny.md @@ -0,0 +1,5 @@ +--- +"@clerk/clerk-js": patch +--- + +Fixes an issue where the application logo would render smaller then intended