Invert graph legends order. (#532)

* Invert graph legends order.

* Reorder graph legends if inverted-graph is true.
This commit is contained in:
Miguel Medeiros
2021-05-23 06:51:29 -03:00
committed by GitHub
parent d055fabfeb
commit 4dcda2cf47
3 changed files with 12 additions and 1 deletions

View File

@@ -1,6 +1,11 @@
.ct-legend{
top: 130px;
display: flex;
flex-direction: column-reverse;
@media (min-width: 653px) {
top: 90px;
}
}
.ct-legend.inverted{
flex-direction: column;
}