mirror of
https://github.com/ansible/awx.git
synced 2026-05-10 02:47:36 -02:30
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:
@@ -3,7 +3,7 @@
|
|||||||
@breakpoint-md: 1200px;
|
@breakpoint-md: 1200px;
|
||||||
|
|
||||||
.JobResultsStdOut {
|
.JobResultsStdOut {
|
||||||
height: 100%;
|
height: auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|||||||
@@ -184,6 +184,11 @@ job-results-standard-out {
|
|||||||
height: ~"calc(100% - 800px)";
|
height: ~"calc(100% - 800px)";
|
||||||
display: flex
|
display: flex
|
||||||
}
|
}
|
||||||
|
@media screen and (max-width: @breakpoint-md) {
|
||||||
|
job-results-standard-out {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.JobResults-extraVarsHelp {
|
.JobResults-extraVarsHelp {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
|
|||||||
Reference in New Issue
Block a user