This CSS fix adds a scrollbar to the modal if content height is greater than resolution

pull/1174/head
Andreas 2021-09-15 17:08:00 +02:00
rodzic 0ff9070fbe
commit 106559d1eb
1 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -242,4 +242,9 @@ color: #ffffff;
.was-map-dialog .modal-dialog {
max-width: 73% !important;
}
}
}
.modal-body {
max-height: calc(100vh - 200px);
overflow-y: auto;
}