UX: restrict tall modal height to viewport %

This commit is contained in:
Kris 2019-10-03 13:16:28 -04:00
parent a404cab509
commit 0744e70022
1 changed files with 4 additions and 1 deletions

View File

@ -143,7 +143,10 @@
&:not(.history-modal) {
.modal-body:not(.reorder-categories):not(.poll-ui-builder) {
max-height: none !important;
max-height: 80vh !important;
@media screen and (max-height: 500px) {
max-height: 65vh !important;
}
}
}
}