2016-12-15 23:43:58 +00:00
|
|
|
.form-container {
|
|
|
|
text-align: center;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2019-05-15 10:11:58 +00:00
|
|
|
.form-container--align-left {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2019-05-14 17:50:54 +00:00
|
|
|
.form-container--align-top {
|
|
|
|
height: unset;
|
|
|
|
}
|
|
|
|
|
2016-12-15 23:43:58 +00:00
|
|
|
.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
|
|
|
}
|
|
|
|
|
2019-05-15 10:11:58 +00:00
|
|
|
.form-container--align-left .form-container__content {
|
|
|
|
align-items: left;
|
|
|
|
}
|
|
|
|
|
2016-12-15 23:43:58 +00:00
|
|
|
.form-container__title {
|
|
|
|
font-weight: normal;
|
2019-05-22 13:38:24 +00:00
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('form-title-color')
|
|
|
|
}
|
2016-12-15 23:43:58 +00:00
|
|
|
}
|
|
|
|
|
2019-05-15 10:11:58 +00:00
|
|
|
.form-container__context {
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('secondary-text-color')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-15 23:43:58 +00:00
|
|
|
.form-container__divider {
|
|
|
|
padding: #{20 / $base-font-size}rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__logo-button {
|
2019-05-22 13:38:24 +00:00
|
|
|
@include icon();
|
2016-12-15 23:43:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__exit-button {
|
2019-05-22 13:38:24 +00:00
|
|
|
@include icon();
|
2016-12-15 23:43:58 +00:00
|
|
|
}
|
2020-04-19 20:45:09 +00:00
|
|
|
|
|
|
|
.form-container__stack > * + * {
|
|
|
|
margin-top: #{10 / $base-font-size}rem;
|
|
|
|
}
|