UX: Eliminate double modal scroll on long mobile create account forms

This commit is contained in:
Kris 2020-02-21 16:08:19 -05:00
parent 5b358a2ca7
commit 90e701b470
1 changed files with 9 additions and 1 deletions

View File

@ -5,7 +5,7 @@
.create-account {
&.fixed-modal .modal-inner-container {
max-width: 350px;
max-height: 85vh;
max-height: 90vh;
}
.close {
@ -143,6 +143,14 @@
// styles for the
// create account
// modal only
#discourse-modal .create-account .modal-body {
max-height: 60vh !important;
@media screen and (max-height: 575px) {
max-height: 50vh !important;
}
}
.create-account .modal-body {
display: flex;
flex-direction: column;