Hi there! I recently created a navbar at the bottom of my website, and I noticed an issue on iOS where the navbar shrinks as I scroll down in responsive mode. My question is, how can I maintain the height of the navbar when scrolling down, specifically for iOS devices? (The website is built in React)
Here is the code I used for my navbar:
.navbar-footer {
display: none;
position: fixed;
bottom: -1px;
left: 0;
right: 0;
height: 65px;
background-color: #fff;
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
z-index: 2;
}