When an image is inside a flexbox it doesn't scale properly (height doesn't auto adjust).
Here is example of it working outside flex and not working inside;
.image-size{
height:auto;
width: 300px;
}
.container{
display: flex;
}
<img class="image-size" src="https://openclipart.org/image/2400px/svg_to_png/233274/arrow-circle.png" alt="circle" />
<div class="container">
<img class="image-size" src="https://openclipart.org/image/2400px/svg_to_png/233274/arrow-circle.png" alt="circle" />
</div>
What is happening here?