diff --git a/app.js b/app.js index 1d8b3ea..d735557 100644 --- a/app.js +++ b/app.js @@ -3,6 +3,14 @@ let intentos = 0; let listaNumerosSorteados = []; let numeroMaximo = 10; +// Deshabilitar el desplazamiento vertical en dispositivos móviles +document.addEventListener('DOMContentLoaded', function () { + if (window.matchMedia("(max-width: 767px)").matches) { + document.body.style.overflowY = 'hidden'; + } +}); + + function asignarTextoElemento(elemento, texto) { let elementoHTML = document.querySelector(elemento); elementoHTML.innerHTML = texto; @@ -69,4 +77,4 @@ function reiniciarJuego() { document.querySelector('#reiniciar').setAttribute('disabled','true'); } -condicionesIniciales(); \ No newline at end of file +condicionesIniciales(); diff --git a/style.css b/style.css index 36b55f6..6dc7236 100644 --- a/style.css +++ b/style.css @@ -123,8 +123,4 @@ button { padding-bottom: 0; } - body { - overflow-y: hidden; - } - }