Spaces:
Running
Running
File size: 410 Bytes
2a6d2b0 |
1 2 3 4 5 6 7 8 9 10 11 12 |
function adjustScale() {
const availableWidth = window.innerWidth - 400 - 40; // space for chat + margins
const actualCanvasWidth = GRID_COLS * CELL_SIZE;
const scale = availableWidth / actualCanvasWidth;
const mapWrapper = document.querySelector('#mapSection .map-wrapper');
if (mapWrapper) {
mapWrapper.style.zoom = scale;
}
}
window.addEventListener('resize', adjustScale);
|