Merge pull request #5444 from ryanpetrello/fix-5431

fix a visual bug for limited screen widths on the job view UI
This commit is contained in:
Ryan Petrello 2017-02-20 12:03:56 -05:00 committed by GitHub
commit ce0096f308
2 changed files with 6 additions and 1 deletions

View File

@ -3,7 +3,7 @@
@breakpoint-md: 1200px;
.JobResultsStdOut {
height: 100%;
height: auto;
width: 100%;
display: flex;
flex-direction: column;

View File

@ -184,6 +184,11 @@ job-results-standard-out {
height: ~"calc(100% - 800px)";
display: flex
}
@media screen and (max-width: @breakpoint-md) {
job-results-standard-out {
height: auto;
}
}
.JobResults-extraVarsHelp {
margin-left: 10px;