mirror of
https://github.com/mempool/mempool.git
synced 2024-12-28 17:24:25 +01:00
Improved graph visibility on mobile.
This commit is contained in:
parent
007bb30826
commit
89533cf76f
@ -17,6 +17,8 @@ export class MempoolGraphComponent implements OnInit, OnChanges {
|
|||||||
mempoolVsizeFeesOptions: any;
|
mempoolVsizeFeesOptions: any;
|
||||||
mempoolVsizeFeesData: any;
|
mempoolVsizeFeesData: any;
|
||||||
|
|
||||||
|
isMobile = window.innerWidth <= 767.98;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private vbytesPipe: VbytesPipe,
|
private vbytesPipe: VbytesPipe,
|
||||||
private stateService: StateService,
|
private stateService: StateService,
|
||||||
@ -56,7 +58,7 @@ export class MempoolGraphComponent implements OnInit, OnChanges {
|
|||||||
labelInterpolationFnc: (value: number): any => {
|
labelInterpolationFnc: (value: number): any => {
|
||||||
return this.vbytesPipe.transform(value, 2);
|
return this.vbytesPipe.transform(value, 2);
|
||||||
},
|
},
|
||||||
offset: 160
|
offset: this.isMobile ? 60 : 160
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
Chartist.plugins.ctTargetLine({
|
Chartist.plugins.ctTargetLine({
|
||||||
|
@ -14,3 +14,13 @@
|
|||||||
height: 22px;
|
height: 22px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767.98px) {
|
||||||
|
.container-xl {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.card-body {
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -71,6 +71,9 @@ body {
|
|||||||
.box {
|
.box {
|
||||||
padding: 0.75rem;
|
padding: 0.75rem;
|
||||||
}
|
}
|
||||||
|
.ct-legend {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-nav.liquid > .active {
|
.navbar-nav.liquid > .active {
|
||||||
|
Loading…
Reference in New Issue
Block a user