Minor fixes

This commit is contained in:
Hyunchul Kim 2021-09-12 12:04:43 +09:00
parent 330cdde9bb
commit 071be2954a

View file

@ -62,8 +62,12 @@ var initY = 0;
let yScalar = 1; let yScalar = 1;
if (window.innerWidth < 800) { if (window.innerWidth < 800) {
yScalar = 2; if (isZoomed) {
} yScalar = 4;
} else {
yScalar = 2;
}
}
for(let i = 0; i < sampleSVG.length; i++) { for(let i = 0; i < sampleSVG.length; i++) {
path = sampleSVG[i]; path = sampleSVG[i];