Hi Dean,
We can make the gap between elements equal (not exactly what you ask for I guess), but that will require some CSS, and we try to avoid adding too much CSS to our starter site templates, we would like to keep them as simple as possible.
If you imported the Crypto site, you can give this CSS a try:
.dynamic-content-template >.gb-container, .dynamic-content-template >.gb-container >.gb-inside-container {
height: 100%;
}
.dynamic-content-template >.gb-container >.gb-inside-container >.gb-container {
height: calc(100% - 250px);
}
.dynamic-content-template >.gb-container >.gb-inside-container >.gb-container >.gb-inside-container {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
Let me know if this helps 🙂