website/src/styles/index.scss
Sangelo 8e23062fa9 Scroll Behaviour Changes using GSAP
- Currently broken on Chromium. Safari and Firefox work just fine.
2024-03-12 18:14:54 +01:00

16 lines
258 B
SCSS

/* layout */
.container {
height: 100vh;
width: 100%;
// scroll-snap-type: y mandatory;
// overflow-y: scroll;
}
.section {
height: 100vh;
scroll-snap-align: start;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}