mirror of
https://github.com/oxen-io/session-desktop.git
synced 2023-12-14 02:12:57 +01:00
fix: reduce font size of group name and add padding
This commit is contained in:
parent
147f2e7954
commit
6d57bce103
1 changed files with 6 additions and 1 deletions
|
@ -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 (
|
||||
<div className="group-settings">
|
||||
<HeaderItem />
|
||||
<h2 data-testid="right-panel-group-name">{displayNameInProfile}</h2>
|
||||
<StyledName data-testid="right-panel-group-name">{displayNameInProfile}</StyledName>
|
||||
{showMemberCount && (
|
||||
<>
|
||||
<SpacerLG />
|
||||
|
|
Loading…
Reference in a new issue