I've been having trouble setting #app to 100% height. It seems like div #app isn't being recognized as a child of Body. This issue keeps occurring and I always have to find a different workaround.
Is there a way to prevent this from happening entirely? CSS:
* {
margin: 0;
padding: 0;
font-family: "Nunito";
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
height: 100%;
}
body {
transition: background 0.25s ease-in-out;
min-height: 100%;
}
#app {
max-height: 100%;
min-width: 100%;
position: relative;
}