Web: Login: fix field jumping

This commit is contained in:
Viktor Fomin 2022-03-17 12:28:20 +03:00
parent b1894a03f3
commit 4ea8d65c08
2 changed files with 6 additions and 0 deletions

View File

@ -408,6 +408,7 @@ const Form = (props) => {
<form className="auth-form-container">
<FieldContainer
className="form-field"
isVertical={true}
labelVisible={false}
hasError={isEmailErrorShow && !identifierValid}
@ -435,6 +436,7 @@ const Form = (props) => {
/>
</FieldContainer>
<FieldContainer
className="form-field"
isVertical={true}
labelVisible={false}
hasError={!passwordValid}

View File

@ -125,6 +125,10 @@ export const LoginContainer = styled.div`
width: 100%;
}
.form-field {
height: 48px;
}
.login-forgot-wrapper {
height: 36px;
padding: 14px 0;