I have my site in a wrapper with:
.site-wrapper {
min-height: 100vh;
display: flex;
flex-direction: column;
}
this makes it so the nav is always on top, body mid and footer at the very bottom of the viewport, however, its giving an undesired problem by making a page with a large image non-reponsive (SCREENSHOT 1).
If I remove the display flex the responsiveness comes back (SCREENSHOT 2), how can I fix this issue?