Подскажите, пожалуйста, как избавиться от такого бага:
https://www.loom.com/share/3c3cc4fdc0ac42dbaa5e94b...
При отведении курсора с инпута, если использовать transition, происходит его расширение, см.видео.
Код:
.header__btn_search {
margin-top: 15px;
background-color: transparent;
background-image: url("../img/icons/search-ico.png");
background-repeat: no-repeat;
background-position-x: right;
border: none;
cursor: pointer;
transition: background 0.3s ease-in-out;
}
.header__btn_search:hover {
height: 27px;
width: 145px;
border: 2px solid #506a85;
border-radius: 3px;
background-color: #fff;
}