This commit is contained in:
Luna D. 2024-05-31 20:21:45 +02:00
parent 979c355d9c
commit 0374d0482b
No known key found for this signature in database
GPG key ID: 4B1C63448394F688

View file

@ -16,7 +16,7 @@ function resizeGraphs() {
const graph: SVGPathElement | null = $<SVGPathElement>('#js-barline-graph', el);
if (graph) {
graph.style.transform = `scale(${parent.clientWidth / 375})`;
graph.style.transform = `scaleX(${parent.clientWidth / 375})`;
}
}
});