fix
Browse files- styles.css +13 -0
styles.css
CHANGED
|
@@ -594,6 +594,19 @@ h1, h2, h3, p, .markdown {
|
|
| 594 |
flex-direction: column !important;
|
| 595 |
}
|
| 596 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 597 |
/* Regressions header button */
|
| 598 |
.regressions-header {
|
| 599 |
margin: 5px 0px 10px 0px !important;
|
|
|
|
| 594 |
flex-direction: column !important;
|
| 595 |
}
|
| 596 |
|
| 597 |
+
/* Summary view - prevent it from expanding too much */
|
| 598 |
+
.summary-view {
|
| 599 |
+
display: flex !important;
|
| 600 |
+
flex-direction: column !important;
|
| 601 |
+
gap: 0px !important;
|
| 602 |
+
}
|
| 603 |
+
|
| 604 |
+
/* Constrain the summary display to not push regressions down */
|
| 605 |
+
.summary-view .plot-container {
|
| 606 |
+
flex: 0 1 auto !important;
|
| 607 |
+
max-height: fit-content !important;
|
| 608 |
+
}
|
| 609 |
+
|
| 610 |
/* Regressions header button */
|
| 611 |
.regressions-header {
|
| 612 |
margin: 5px 0px 10px 0px !important;
|