revert small size, still used for the formation

This commit is contained in:
Julien Calixte
2025-01-09 22:57:46 +01:00
parent 50ef2f683a
commit 3300aa784f

View File

@@ -26,6 +26,15 @@ if (display === 'house-only') {
document.querySelectorAll('.hud')?.forEach((hud) => hud.remove())
}
const size = params.get('size')
if (size === 'small') {
const body = document.querySelector('body')
if (body) {
body.style.fontSize = '15px'
}
}
const focusElements = params.getAll('focus')
if (focusElements.length > 0) {