18 lines
345 B
SCSS
18 lines
345 B
SCSS
.signup {
|
|
text-align: center;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.signup-form__username-input,
|
|
.signup-form__email-input,
|
|
.signup-form__password-input,
|
|
.signup-form__confirm-password-input {
|
|
width: #{300 / $base-font-size}rem;
|
|
}
|
|
|
|
.signup-form__field {
|
|
margin: #{20 / $base-font-size}rem 0;
|
|
}
|