Fix vertical align Graph. (#528)

* Fix graph component vertical css query.

* Fix chart-holder padding-top.
This commit is contained in:
Miguel Medeiros 2021-05-18 18:06:51 -03:00 committed by GitHub
parent 50b94f8b72
commit 3e435d1394
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,12 +17,15 @@
.chart-holder {
height: calc(100vh - 270px);
min-height: 600px;
min-height: 525px;
padding-left: 20px;
width: 97%;
padding-top: 70px;
padding-top: 20px;
@media(min-width: 992px){
padding-top: 30px;
padding-top: 10px;
}
@media(min-height: 800px){
padding-top: 60px !important;
}
}
@ -63,8 +66,11 @@
}
}
:host ::ng-deep .ct-legend {
top: 25px;
}
:host ::ng-deep .ct-legend {
top: 20px !important;
@media(min-height: 800px){
padding-top: 40px !important;
}
}