Fix #4010. Options modal in the mitmweb page no longer overflows the y axis. (#4014)

don't overflow options dialog, fix #4010
This commit is contained in:
V S Sreejeet 2020-06-12 15:42:37 +05:30 committed by GitHub
parent 465db6f394
commit c93d00bd7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -8,6 +8,6 @@
}
.modal-body {
max-height: calc(100vh - 20px);
max-height: calc(100vh - 200px);
overflow-y: auto;
}