Following style has corrupted layout. .portfolio img { **flex: 1;** object-fit: cover; width: 100%; } So, I think it shoud be as follows .portfolio img { **flex-grow: 1;** object-fit: cover; width: 100%; }
Following style has corrupted layout.
.portfolio img {
flex: 1;
object-fit: cover;
width: 100%;
}
So, I think it shoud be as follows
.portfolio img {
flex-grow: 1;
object-fit: cover;
width: 100%;
}