2016-12-15 23:43:58 +00:00
|
|
|
.form-container {
|
|
|
|
text-align: center;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__header {
|
|
|
|
width: 100%;
|
|
|
|
padding: #{15 / $base-font-size}rem #{34 / $base-font-size}rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__content {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2017-04-13 16:04:10 +00:00
|
|
|
align-items: center;
|
2016-12-15 23:43:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__title {
|
|
|
|
font-weight: normal;
|
|
|
|
color: $form-title-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__divider {
|
|
|
|
padding: #{20 / $base-font-size}rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__logo-button {
|
|
|
|
@extend %none-themify-icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__exit-button {
|
2016-12-19 21:49:37 +00:00
|
|
|
@extend %none-themify-icon-with-hover;
|
2016-12-15 23:43:58 +00:00
|
|
|
}
|