rosary: prevent manual scrolling on mystery image column
All checks were successful
CI / update (push) Successful in 1m29s

Change overflow-y from auto to hidden so the image column only
scrolls programmatically in sync with prayers, not via user input.
This commit is contained in:
2026-02-12 16:48:29 +01:00
parent 2c364ed351
commit 7901d56b5b

View File

@@ -605,12 +605,8 @@ h1 {
top: 0; top: 0;
align-self: start; align-self: start;
max-height: 100vh; max-height: 100vh;
overflow-y: auto; overflow-y: hidden;
overflow-x: hidden; overflow-x: hidden;
scrollbar-width: none;
}
.mystery-image-column::-webkit-scrollbar {
display: none;
} }
} }