I think the issue is that you have a header, so you’d have to substract its height to your 100vh min-height.
You can do that by Watching Scroll Position on your header to have access to its height. Then bind a formula to your section’s min-height property. Something like: "calc(100vh - header.height + "px")"
If your header has a fixed height you can even simplify and enter your value directly
Oo, great solution. It is indeed due to that top menu. I have a question. How do I watch scroll position and get the height of the top nav menu? Could you explain haha
Not quite sure what you meant when you said: "You can do that by Watching Scroll Position on your header to have access to its height. Then bind a formula to your section’s min-height property. Something like: "calc(100vh - header.height + "px")"