22 lines
350 B
SCSS
22 lines
350 B
SCSS
|
.login {
|
||
|
text-align: center;
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.login-form__email-label,
|
||
|
.login-form__password-label {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.login-form__email-input,
|
||
|
.login-form__password-input {
|
||
|
width: #{300 / $base-font-size}rem;
|
||
|
}
|
||
|
|
||
|
.login-form__field {
|
||
|
margin: #{20 / $base-font-size}rem 0;
|
||
|
}
|