I have a User interfact setup but the flexbox is not expanding all the way downwards. As we can see I am trying to get a 25% / 75% split between the sections vertically and I want the sections to take the rest of space downwards but it only goes as far as the lowest element in either of the sections.
I've tried height: 100% but that does not seem to work. Not sure what to do from here.
#horizontalTake {
height: 100%;
}
#container {
display: flex;
flex-wrap: wrap;
height: 100%;
flex-direction: row;
}
#side {
flex: 25%;
background-color: #f1f1f1;
justify-content: center;
padding-top: 35px;
}
#main {
flex: 75%;
background-color: #e1e6ed;
justify-content: center;
}
<div id = 'horizontalTake'>
<div id = "container">
<div id = "side">
<center>
<h3> TestOne </h3>
</center>
</div>
<div id = "main">
<center>
<h3> TestTwo </h3>
</center>
</div>
</div>
</div>