I'm building a web app with React/Redux and Foundation as a styling library.
What is the best way to have a sticky footer ALWAYS appear on the screen, even when the on screen keyboard pops up? As of now, the keyboard covers the footer, but I would like to see the footer right above the keyboard.
The CSS for the footer...
#footer {
width: 100%;
background-color: #4c66a4;
color: #fff;
position: fixed;
left: 0px;
bottom: 0px;
height: 60px;
text-align: center;
}