Stretch left panel to height of browser

This commit is contained in:
Marliana Lara
2017-05-03 11:55:09 -04:00
parent 57ce713891
commit fae6573ae2

View File

@@ -8,7 +8,6 @@
standard-out-log { standard-out-log {
flex: 5; flex: 5;
display: flex; display: flex;
overflow: hidden;
} }
.StandardOut-preContent{ .StandardOut-preContent{
@@ -18,7 +17,7 @@ standard-out-log {
} }
.StandardOut-container { .StandardOut-container {
.OnePlusOne-container(80vh, @breakpoint-md); .OnePlusOne-container(100%, @breakpoint-md);
&.fullscreen { &.fullscreen {
.StandardOut-rightPanel { .StandardOut-rightPanel {
@@ -28,11 +27,16 @@ standard-out-log {
} }
.StandardOut-leftPanel { .StandardOut-leftPanel {
.OnePlusOne-panel--left(100%, @breakpoint-md); .OnePlusOne-panel--left(auto, @breakpoint-md);
max-width: 600px; max-width: 600px;
display: flex;
@media (max-width: @breakpoint-md - 1px) { @media (max-width: @breakpoint-md - 1px) {
max-width: 100%; max-width: 100%;
} }
.Panel {
height: auto;
}
} }
.StandardOut-rightPanel { .StandardOut-rightPanel {
@@ -48,7 +52,7 @@ standard-out-log {
} }
.StandardOut-consoleOutput { .StandardOut-consoleOutput {
height: 94%; height: 493px;
} }
} }
@@ -63,7 +67,6 @@ standard-out-log {
max-height: 100vh; max-height: 100vh;
height: ~"calc(100vh - 245px)"; height: ~"calc(100vh - 245px)";
width: 100%; width: 100%;
overflow: auto; overflow: auto;
} }