This commit is contained in:
Maximilian Hils 2015-06-08 19:01:32 +02:00
parent 083b404bba
commit d389b9c59d
2 changed files with 6 additions and 0 deletions

View File

@ -59,6 +59,7 @@ body,
}
.main-view {
flex: 1 1 auto;
height: 0;
display: flex;
flex-direction: row;
}

View File

@ -18,6 +18,11 @@ html, body, #container {
.main-view {
flex: 1 1 auto;
// All children of #container need an explicit height
// If we don't set this, the scrollbars disappear
// (https://github.com/mitmproxy/mitmproxy/issues/615)
height: 0;
display: flex;
flex-direction: row;