I'm currently utilizing flexbox to arrange elements in a row
<div class="artist-wrapper">
<div class="artist"></div>
<div class="artist"></div>
<div class="artist"></div>
</div>
.artist-wrapper {
display: flex;
height: 100%;
width: 100%;
}
.artist {
flex: 1;
height: 100%;
}
The implementation is functioning as intended! However, for smaller screens such as mobile devices, the `.artist-elements` should be stacked vertically instead of horizontally. Is there a way to achieve this using flexbox?