fix right side legend rendering in phantomjs

This commit is contained in:
Alexander Zobnin
2018-04-12 14:22:19 +03:00
parent cdcaaa5d03
commit 74c10515ad
2 changed files with 20 additions and 3 deletions

View File

@@ -7,6 +7,10 @@
@include media-breakpoint-up(sm) {
flex-direction: row;
.graph-panel__chart {
flex: 2 1 10px;
}
.graph-legend {
flex: 0 1 10px;
max-height: 100%;
@@ -131,8 +135,20 @@
// fix for phantomjs
.body--phantomjs {
.graph-panel--legend-right {
.graph-legend {
display: inline-block;
}
.graph-panel__chart {
display: flex;
}
.graph-legend-table {
display: table;
.graph-legend-scroll {
display: table;
}
}
}
}