From 6d57bce10393a52b7caa5810712b716b1ec46a59 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 7 Feb 2023 16:36:18 +1100 Subject: [PATCH] fix: reduce font size of group name and add padding --- ts/components/conversation/SessionRightPanel.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ts/components/conversation/SessionRightPanel.tsx b/ts/components/conversation/SessionRightPanel.tsx index 7a836dbb7..eefa5970d 100644 --- a/ts/components/conversation/SessionRightPanel.tsx +++ b/ts/components/conversation/SessionRightPanel.tsx @@ -181,6 +181,11 @@ const StyledGroupSettingsItem = styled.div` } `; +const StyledName = styled.h4` + padding-inline: var(--margins-md); + font-size: var(--font-size-md); +`; + // tslint:disable: cyclomatic-complexity // tslint:disable: max-func-body-length export const SessionRightPanelWithDetails = () => { @@ -276,7 +281,7 @@ export const SessionRightPanelWithDetails = () => { return (
-

{displayNameInProfile}

+ {displayNameInProfile} {showMemberCount && ( <>