Whenever I click my search bar, the search in box appears to be so small and cramped in the right,
What I want is, when clicked the search inbox should appear in the middle
Thank you, much appreciated
Please look at the video for reference.
And the code I used to move the search icon to the right is:
details-modal.header__search {
position: absolute;
top: 50%;
}
.header__icons {
position: absolute;
top: 50%;
}
@media screen and (max-width: 989px) {
details-modal.header__search {
position: relative;
top: unset;
}
.header__icons {
position: relative;
top: unset;
}
}