My logo appears to be too large for the left side div of the navbar. The image extends beyond the boundaries of the div. I'm not sure what is causing this issue?
index.js
<div class="navbar-brand" >
<img class="logo-Image" src="./assets/images/kwikModelLogo.png" alt="KiwiModel" />
</div>
style.css
header.navbar .navbar-brand {
display: inline-block;
width: 250px;
height: 60px;
margin-right: 0;
padding: .8rem 1.5rem;
background-color: #fff;
}
I need to find a way to make the div fit properly within the left div of the navbar.