This commit is contained in:
okbel
2018-03-29 13:27:35 -03:00
parent bfea8b00e1
commit 8d147c9e7b
2 changed files with 14 additions and 3 deletions
@@ -9,5 +9,10 @@
}
.fieldContainer {
padding: 5px 0;
padding: 10px 0;
display: flex;
}
.textLabel {
padding-left: 10px;
}
@@ -58,13 +58,19 @@ class TermsAndConditionsField extends React.Component {
onChange={this.onChange}
id={this.id}
/>
<label id={this.id} className="talk-plugin-health-report-label">
<div
id={this.id}
className={cn(
styles.textLabel,
'talk-plugin-health-report-text-label'
)}
>
{t('talk-plugin-health-report.copy')}
<TermsLink />
{t('talk-plugin-health-report.and')}
<PrivacyLink />
{t('talk-plugin-health-report.from')}
</label>
</div>
</div>
);
}