I fix usingfixed this problem using the following code:
Code
<div class="container"><img src="image_url" /></div>
<div class="container"><img src="image_url" /></div>
.container {
height: 75px;
width: 75px;
img {
object-fit: cover;
object-position: top;
display: block;
height: 100%;
width: 100%;
}
}
.container {
height: 75px;
width: 75px;
}
.container img {
object-fit: cover;
object-position: top;
display: block;
height: 100%;
width: 100%;
}