This commit is contained in:
Luna D. 2024-05-31 20:18:21 +02:00
parent 23c1a3d565
commit 979c355d9c
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.setAttribute('style', `transform: scale(${parent.clientWidth / 375});`);
graph.style.transform = `scale(${parent.clientWidth / 375})`;
}
}
});