From 1937fe24188ef59129d9efd0216b8c3350250346 Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Sat, 13 Jun 2020 00:04:10 +0200 Subject: [PATCH] Show footer always at the bottom Signed-off-by: Tilman Vatteroth --- src/components/landing/landing-layout.tsx | 12 ++++++++---- src/components/landing/pages/intro/intro.tsx | 6 +++--- src/global-style/index.scss | 4 ++++ 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/src/components/landing/landing-layout.tsx b/src/components/landing/landing-layout.tsx index 652eeebdb..421fda9eb 100644 --- a/src/components/landing/landing-layout.tsx +++ b/src/components/landing/landing-layout.tsx @@ -1,14 +1,18 @@ import React from 'react' import { Container } from 'react-bootstrap' -import { HeaderBar } from './layout/navigation/header-bar/header-bar' import { Footer } from './layout/footer/footer' +import { HeaderBar } from './layout/navigation/header-bar/header-bar' export const LandingLayout: React.FC = ({ children }) => { return ( - + - {children} -