Web: Files: StyledPanel: fixed font-size in ComboButton in AddUserPanel and AddGroupPanel

This commit is contained in:
Artem Tarasov 2020-11-06 12:46:21 +03:00
parent 678d31cc32
commit 63763ac499
2 changed files with 8 additions and 2 deletions

View File

@ -130,12 +130,12 @@ class AddGroupsPanelComponent extends React.Component {
> >
{t("AddGroupsForSharingButton")} {t("AddGroupsForSharingButton")}
</Heading> </Heading>
<IconButton {/*<IconButton
size="16" size="16"
iconName="PlusIcon" iconName="PlusIcon"
className="header_aside-panel-plus-icon" className="header_aside-panel-plus-icon"
onClick={this.onPLusClick} onClick={this.onPLusClick}
/> />*/}
</StyledHeaderContent> </StyledHeaderContent>
<StyledBody ref={this.scrollRef}> <StyledBody ref={this.scrollRef}>

View File

@ -69,6 +69,9 @@ const StyledAddUsersPanelPanel = styled.div`
} }
} }
${PanelStyles} ${PanelStyles}
.combo-button-label {
font-size: 14px;
}
`; `;
const StyledAddGroupsPanel = styled.div` const StyledAddGroupsPanel = styled.div`
@ -82,6 +85,9 @@ const StyledAddGroupsPanel = styled.div`
} }
} }
${PanelStyles} ${PanelStyles}
.combo-button-label {
font-size: 14px;
}
`; `;
const StyledEmbeddingPanel = styled.div` const StyledEmbeddingPanel = styled.div`