mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-26 17:16:11 -05:00
make password font size large, if password hidden
This commit is contained in:
parent
f8b901844b
commit
9f5dc9928f
3 changed files with 14 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
|||
border-radius: .5rem;
|
||||
background-color: $ui-white;
|
||||
margin-bottom: .5rem;
|
||||
transition: all .5s ease;
|
||||
transition: all .5s ease, font-size 0s;
|
||||
border: 1px solid $active-gray;
|
||||
padding: 0 1rem;
|
||||
color: $type-gray;
|
||||
|
@ -15,6 +15,7 @@
|
|||
box-shadow: 0 0 0 .25rem $ui-blue-25percent;
|
||||
outline: none;
|
||||
border: 1px solid $ui-blue;
|
||||
transition: all .5s ease, font-size 0s;
|
||||
}
|
||||
|
||||
&.fail {
|
||||
|
|
|
@ -13,6 +13,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.join-flow-input-password {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.join-flow-password-confirm {
|
||||
margin-bottom: .6875rem;
|
||||
}
|
||||
|
|
|
@ -176,7 +176,9 @@ class UsernameStep extends React.Component {
|
|||
</div>
|
||||
<FormikInput
|
||||
className={classNames(
|
||||
'join-flow-input'
|
||||
'join-flow-input',
|
||||
{'join-flow-input-password':
|
||||
!values.showPassword && values.password.length > 0}
|
||||
)}
|
||||
error={errors.password}
|
||||
id="password"
|
||||
|
@ -201,7 +203,11 @@ class UsernameStep extends React.Component {
|
|||
className={classNames(
|
||||
'join-flow-input',
|
||||
'join-flow-password-confirm',
|
||||
{fail: errors.passwordConfirm}
|
||||
{
|
||||
'join-flow-input-password':
|
||||
!values.showPassword && values.passwordConfirm.length > 0,
|
||||
'fail': errors.passwordConfirm
|
||||
}
|
||||
)}
|
||||
error={errors.passwordConfirm}
|
||||
id="passwordConfirm"
|
||||
|
|
Loading…
Reference in a new issue