Encountering a browser support issue at the moment.
Everything is functioning as expected on Firefox and Chrome, but Safari is causing problems with images. Currently, the image size is set using "object-fit: cover" and working properly on Chrome/Firefox. However, Safari seems to be disregarding it and displaying the image very large. Here's a screenshot showing the intended vs. actual outcome: https://i.sstatic.net/mfP8K.jpg
Below is an HTML and CSS snippet of the code affecting this row/column:
<div class="feature-image">
<img class="img-1" src="@/assets/preview-images/feature 1.png" alt="">
</div>
.feature-image {
width: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
img {
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.img-2 {
max-width: 320px;
}
}