From 428293af08041dbe34816fe932c74ec8d69aaaaf Mon Sep 17 00:00:00 2001 From: Sushmitha Sekar Date: Fri, 19 Jul 2024 17:25:56 +0200 Subject: [PATCH] Fix width of branding link --- src/webchat-ui/components/branding/Branding.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/webchat-ui/components/branding/Branding.tsx b/src/webchat-ui/components/branding/Branding.tsx index a25cba9f..2380fa8f 100644 --- a/src/webchat-ui/components/branding/Branding.tsx +++ b/src/webchat-ui/components/branding/Branding.tsx @@ -6,7 +6,8 @@ import { IWebchatSettings } from "../../../common/interfaces/webchat-config"; const Link = styled.a(({ theme }) => ({ display: "flex", alignItems: "baseline", - justifyContent: "center", + alignSelf: "center", + width: "fit-content", height: 12, color: theme.textDark,