mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-17 00:21:20 -05:00
Merge pull request #3482 from nandedamana/issue/gh-3182-teacher-reg-form-diff-font-weights
fixed the issue "Create a Username" has different font weight
This commit is contained in:
commit
7031bc5dfe
1 changed files with 4 additions and 6 deletions
|
@ -195,17 +195,15 @@ class UsernameStep extends React.Component {
|
|||
}}
|
||||
onValidSubmit={this.handleValidSubmit}
|
||||
>
|
||||
<div>
|
||||
<div className="username-label">
|
||||
<b>
|
||||
{this.props.intl.formatMessage({id: 'registration.createUsername'})}
|
||||
</b>
|
||||
<div className="form-group row">
|
||||
<label className="username-label col-sm-3">
|
||||
{this.props.intl.formatMessage({id: 'registration.createUsername'})}
|
||||
{this.props.usernameHelp ? (
|
||||
<p className="help-text">{this.props.usernameHelp}</p>
|
||||
) : (
|
||||
null
|
||||
)}
|
||||
</div>
|
||||
</label>
|
||||
<Input
|
||||
required
|
||||
className={this.state.validUsername}
|
||||
|
|
Loading…
Reference in a new issue