I have a couple of images that I'm trying to use. The height in CSS adjusts but whenever I try to change the width to anything over 183px (probably specific to my image) it simply doesn't work.
.mobile-nav {
display: block;
}
.mobile-nav-link {
text-decoration: none;
}
.mobile-nav-img {
display: block;
object-fit: contain;
height: 39px;
width: auto;
}
<div className='mobile-nav'>
<a className='mobile-nav-link' href='http://www.google.com'>
<img className='mobile-nav-img' src={require( 'image1.png')} />
</a>
<a className='mobile-nav-link' href='http://www.google.com'>
<img className='mobile-nav-img' src={require( 'image2.png')} />
</a>
</div>