Fix contact link font styles

This commit is contained in:
Hannu Lyytikainen 2018-07-10 09:05:18 +03:00
parent dd9c278ff1
commit 200adf4269
2 changed files with 6 additions and 1 deletions

View file

@ -114,3 +114,8 @@
display: none;
}
}
.contact {
@apply --marketplaceH4FontStyles;
margin: 0;
}

View file

@ -86,7 +86,7 @@ const UserCard = props => {
const separator = isCurrentUser ? null : <span className={css.linkSeparator}></span>;
const contact = (
<InlineTextButton onClick={handleContactUserClick}>
<InlineTextButton className={css.contact} onClick={handleContactUserClick}>
<FormattedMessage id="UserCard.contactUser" />
</InlineTextButton>
);