Browse Source

minor fixes

master
Anastasia Poupeney 7 years ago
parent
commit
a21f8151fa
  1. 22
      src/components/IsUnlocked.js

22
src/components/IsUnlocked.js

@ -70,20 +70,20 @@ const defaultState = {
} }
export const PageTitle = styled(Box).attrs({ export const PageTitle = styled(Box).attrs({
width: '152px', width: 152,
height: '27px', height: 27,
fontFamily: 'MuseoSans', ff: 'Museo Sans|Regular',
fontSize: '22px', fontSize: 22,
color: '#1d2028', color: 'dark',
})`` })``
export const LockScreenDesc = styled(Box).attrs({ export const LockScreenDesc = styled(Box).attrs({
width: '340px', width: 340,
height: '36px', height: 36,
fontFamily: 'OpenSans', ff: 'Open Sans|Regular',
fontSize: '13px', fontSize: 13,
textAlign: 'center', textAlign: 'center',
color: '#666', color: 'smoke',
})` })`
margin: 10px auto 25px; margin: 10px auto 25px;
` `
@ -174,7 +174,7 @@ class IsUnlocked extends Component<Props, State> {
<br /> <br />
{t('common:lockScreen.description')} {t('common:lockScreen.description')}
</LockScreenDesc> </LockScreenDesc>
<Box style={{ minWidth: '230px' }}> <Box style={{ minWidth: 230 }}>
<InputPassword <InputPassword
autoFocus autoFocus
innerRef={(n: any) => (this._input = n)} innerRef={(n: any) => (this._input = n)}

Loading…
Cancel
Save