client - mobile - Axis label font is scaled on small screens (#5512)

On phones or other small screens, the axis labels (especially x axis)
were previously an unreadable jumble of too-close letters
This commit is contained in:
stephencmorton
2020-02-16 14:14:45 +02:00
committed by GitHub
parent 65b9f38f88
commit cd2ad5e1ae
+9
View File
@@ -537,6 +537,11 @@ a, a:visited, a:link {
}
@media (max-width: 750px) {
.x.axis {
font-size: 2.5vmin !important;
}
.bgStatus {
width: 50%;
padding: 0 0 20px 0;
@@ -678,6 +683,10 @@ a, a:visited, a:link {
#chartContainer {
font-size: 14px;
}
.y.axis {
font-size: 2.5vmin !important;
}
}
@media (max-height: 600px) {