I'm struggling to position the down arrow in the bottom center of the page using flex layout. Can someone offer assistance? Here is my current CSS/HTML code:
.flex-description-container {
display: flex;
flex-flow: row wrap;
align-items: center
}
.flex-item-descriptionText {
padding: 10px;
color: white;
font-weight: bold;
font-size: 4em;
text-align: center;
flex: 1;
}
.flex-item-descriptionImage {
padding: 10px;
color: white;
flex: 1;
}
.flex-item-next {
flex: 1 100%;
align-items: center;
align-self: flex-end;
justify-content: center;
}
App.jsx>
<Parallax.Layer
offset={0} speed={0}
onClick={() => this.parallax.scrollTo(1)}>
<div class="flex-description-container ">
<div class="flex-item-descriptionText">Text </div>
<div class="flex-item-descriptionImage">
<img src={url('desk')} style={{ width: '50%' }} />
</div>
<div class="flex-item-next">
<img src={url('down')} style={{ width: '5%' }} />
</div>
</div>
</Parallax.Layer>
https://i.sstatic.net/UsxBh.png
PS: Utilizing this react component