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

这个提交包含在:
Andreas 2021-09-15 17:08:00 +02:00
父节点 0ff9070fbe
当前提交 106559d1eb

查看文件

@ -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;
}