Consolidate button styles in Space creation flows

This commit is contained in:
Michael Telatynski 2021-03-19 13:16:36 +00:00
parent 2b4c670b89
commit 1fbbb67e74
5 changed files with 66 additions and 162 deletions

View file

@ -47,7 +47,7 @@ const SpacePublicShare = ({ space, onFinished }: IProps) => {
}
}}
>
{ _t("Share invite link") }
<h3>{ _t("Share invite link") }</h3>
<span>{ copiedText }</span>
</AccessibleButton>
<AccessibleButton
@ -57,7 +57,8 @@ const SpacePublicShare = ({ space, onFinished }: IProps) => {
onFinished();
}}
>
{ _t("Invite by email or username") }
<h3>{ _t("Invite people") }</h3>
<span>{ _t("Invite with email or username") }</span>
</AccessibleButton>
</div>;
};