fix(client): footer should stick to the bottom

This commit is contained in:
Valeriy S
2019-05-14 17:33:24 +03:00
committed by mrugesh
parent 73961da21a
commit 6b46736801
3 changed files with 5 additions and 1 deletions

View File

@@ -164,9 +164,9 @@ class DefaultLayout extends Component {
<Flash flashMessage={flashMessage} onClose={removeFlashMessage} />
) : null}
{children}
{showFooter && <Footer />}
</div>
</WithInstantSearch>
{showFooter && <Footer />}
</Fragment>
);
}