From 4e878aab112b08a18f7285bbb0df1f20d38ee9cf Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sat, 8 Jan 2022 18:42:06 +0100 Subject: chore: ensure 100vh height and improve Header/Footer styles --- src/components/Main/Main.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/components/Main/Main.tsx') diff --git a/src/components/Main/Main.tsx b/src/components/Main/Main.tsx index ad270f6..b21ab1c 100644 --- a/src/components/Main/Main.tsx +++ b/src/components/Main/Main.tsx @@ -1,7 +1,12 @@ import { FunctionComponent } from 'react'; +import styles from './Main.module.scss'; const Main: FunctionComponent = ({ children }) => { - return
{children}
; + return ( +
+ {children} +
+ ); }; export default Main; -- cgit v1.2.3