fix(scroll): restaura el scroll de página (el theme forzaba body overflow:hidden)#13
Merged
Conversation
…flow:hidden})
tokens.css del theme pone body{overflow:hidden} para los slide decks; al importarlo en site.css, TODA la web heredaba ese bloqueo: no habia barra de scroll ni respondia la rueda del raton en ninguna pagina. Se sobrescribe el body con overflow-x:hidden; overflow-y:auto (gana en la cascada por orden de fuente). Causa raiz del 'ni siquiera aparece que podamos hacer scroll'.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
TellMeAlex
approved these changes
Jun 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Qué arregla
tokens.cssdel theme fuerzabody { overflow: hidden }(pensado para los slide decks). Al importarlo ensite.css, toda la web heredaba ese bloqueo: comohtmlesvisible, elhiddendelbodyse propaga al viewport y la página entera dejaba de scrollear — sin barra de scroll, sin rueda, sin teclado, en todas las páginas.Fix
En
site.css, sobre elbody:Va después de la regla del theme en la cascada → gana → el viewport vuelve a scrollear. Verificado en el CSS compilado.
Contexto
Follow-up de #12 (ya mergeado por squash): este fix se pusheó después del merge y se quedó fuera de
main.🤖 Generated with Claude Code