mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
fixed the issue "Create a Username" has different font weight
This commit is contained in:
parent
9221b6f6b5
commit
4e3956e1e4
1 changed files with 3 additions and 5 deletions
|
@ -196,16 +196,14 @@ class UsernameStep extends React.Component {
|
|||
onValidSubmit={this.handleValidSubmit}
|
||||
>
|
||||
<div>
|
||||
<div className="username-label">
|
||||
<b>
|
||||
{this.props.intl.formatMessage({id: 'registration.createUsername'})}
|
||||
</b>
|
||||
<label className="username-label">
|
||||
{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