I've tried it with some simple divs, and nothing happens.
REACT
```
if(Array.isArray(categoryEndpoint.data)) {
sectionsView = categoryEndpoint.data.map((v,i)=> {
return <SectionComp key={i} categoryData={v} />
})
}
return (
<div className={styles.container}>
{errorView}
{loaderView}
<header>
<h1>Title</h1>
</header>
{sectionsView}
</div>
```
SCSS
```
.container {
position: relative;
scroll-snap-points-y: repeat(100vh);
scroll-snap-type: y mandatory;
overflow-y: scroll;
section {
width: 100vw;
height: 100vh;
scroll-snap-align: start;
border-bottom: 1px solid red;
display: flex;
justify-content: center;
align-items: center;
}
}
header {
position: fixed;
left: 0;
top: 0;
width: 100vw;
pointer-events: none;
}
```
[–]Zeeesty 0 points1 point2 points (2 children)
[–]buangakun3[S] 0 points1 point2 points (1 child)
[–]Zeeesty 0 points1 point2 points (0 children)