Подскажите пожалуйста как сделать что бы при наведении иконки не прыгали?
<li class="dropdown-item header-dropdown-item d-flex align-items-center justify-content-center">
<a id="dropdown-link-contract-id" class="d-flex flex-column align-items-center" href="#">
<img src="Logo_Contracts-40.svg" width="40" />
<span>Safe Connect</span></a>
</li>
.header-dropdown-item {
width: 4.5rem;
height: 4rem;
border-radius: 0.5rem;
cursor: pointer;
position: relative;
}
.header-dropdown-item:hover {
background-color: #FAFAFA;
height: fit-content;
}
.header-dropdown-item:hover span {
color: #E66D05;
white-space: pre-wrap;
}
.header-dropdown-item span {
font-size: 0.75rem;
line-height: 1rem;
color: #464544;
width: 4rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
}