diff options
author | V S Sreejeet <vsreejeet@gmail.com> | 2020-06-12 15:42:37 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-12 12:12:37 +0200 |
commit | c93d00bd7fe99fd86205d76c0bf22c6afacf0a66 (patch) | |
tree | 355ff2b8372f939a2ef96622cc9da264a7360f5b /web/src/css/modal.less | |
parent | 465db6f394cad390c3874d830c6224fa9cd09a10 (diff) | |
download | mitmproxy-c93d00bd7fe99fd86205d76c0bf22c6afacf0a66.tar.gz mitmproxy-c93d00bd7fe99fd86205d76c0bf22c6afacf0a66.tar.bz2 mitmproxy-c93d00bd7fe99fd86205d76c0bf22c6afacf0a66.zip |
Fix #4010. Options modal in the mitmweb page no longer overflows the y axis. (#4014)
don't overflow options dialog, fix #4010
Diffstat (limited to 'web/src/css/modal.less')
-rw-r--r-- | web/src/css/modal.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/css/modal.less b/web/src/css/modal.less index 8d578f03..30e98f9c 100644 --- a/web/src/css/modal.less +++ b/web/src/css/modal.less @@ -8,6 +8,6 @@ } .modal-body { - max-height: calc(100vh - 20px); + max-height: calc(100vh - 200px); overflow-y: auto; } |