"view more" links - placeholders

This commit is contained in:
nymkappa
2022-03-05 17:21:11 +01:00
parent dd43ba2f2c
commit f84a7535de
8 changed files with 103 additions and 24 deletions

View File

@@ -7,7 +7,10 @@
.chart-widget {
width: 100%;
height: 100%;
max-height: 325px;
max-height: 270px;
@media (max-width: 767.98px) {
max-height: 200px;
}
}
.formRadioGroup {

View File

@@ -208,6 +208,8 @@ export class PoolRankingComponent implements OnInit {
let radius: any[] = ['20%', '80%'];
let top: any = undefined; let bottom = undefined; let height = undefined;
if (this.isMobile() && this.widget) {
top = -30;
height = 270;
radius = ['10%', '50%'];
} else if (this.isMobile() && !this.widget) {
top = 0;
@@ -215,6 +217,8 @@ export class PoolRankingComponent implements OnInit {
radius = ['10%', '50%'];
} else if (this.widget) {
radius = ['15%', '60%'];
top = -20;
height = 330;
} else {
top = 35;
}