mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 15:47:53 -05:00
Merge pull request #6446 from mxmou/teacher-registration-label-font-weight
Use font weight bold consistently for teacher registration form labels
This commit is contained in:
commit
1dc4881080
3 changed files with 19 additions and 3 deletions
|
@ -11,7 +11,7 @@ require('./radio-group.scss');
|
|||
|
||||
const RadioGroup = props => (
|
||||
<FRCRadioGroup
|
||||
className={classNames('radio-group', props.className)}
|
||||
rowClassName={classNames('radio-group', props.className)}
|
||||
{... props}
|
||||
/>
|
||||
);
|
||||
|
|
|
@ -792,7 +792,7 @@ class OrganizationStep extends React.Component {
|
|||
}}
|
||||
/>
|
||||
<div className="organization-type">
|
||||
<b><intl.FormattedMessage id="teacherRegistration.orgType" /></b>
|
||||
<b className="row-label"><intl.FormattedMessage id="teacherRegistration.orgType" /></b>
|
||||
<p className="help-text">
|
||||
<intl.FormattedMessage id="teacherRegistration.checkAll" />
|
||||
</p>
|
||||
|
@ -833,7 +833,7 @@ class OrganizationStep extends React.Component {
|
|||
/>
|
||||
</div>
|
||||
<div className="url-input">
|
||||
<b><intl.FormattedMessage id="general.website" /></b>
|
||||
<b className="row-label"><intl.FormattedMessage id="general.website" /></b>
|
||||
<p className="help-text">
|
||||
<intl.FormattedMessage id="teacherRegistration.notRequired" />
|
||||
</p>
|
||||
|
|
|
@ -26,6 +26,18 @@
|
|||
}
|
||||
}
|
||||
|
||||
.row {
|
||||
label {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.checkbox {
|
||||
label {
|
||||
font-weight: 300;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.help-text {
|
||||
margin: .25rem 0;
|
||||
text-align: left;
|
||||
|
@ -66,6 +78,10 @@
|
|||
&.demographics-step {
|
||||
.radio {
|
||||
margin: 1.5rem 1.5rem 0 0;
|
||||
|
||||
label {
|
||||
font-weight: 300;
|
||||
}
|
||||
}
|
||||
|
||||
input[type="radio"] {
|
||||
|
|
Loading…
Reference in a new issue