Within a Page you have multiple Article sections which the user can scroll the page to read.
Is there a way to adding scroll snapping? so if they scroll close to the section it will snap the top to match the browser window? I don’t see anything in the options.
You can view an example of this effect here:
This is easy to achieve by adding css:
.page .page-inner {
height: 100vh;
scroll-snap-type: y proximity;
overflow-y: scroll;
}
.article,
.content {
scroll-snap-align: start;
}
But custom css is not allowed within Evolve. How else could this be achieved?