diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-14 00:30:54 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-14 00:30:54 +0100 |
| commit | 15d247cb0d52d9c091fa040fe1d9d45e9e506050 (patch) | |
| tree | f6158f3c0bda9033ebcecdcb53584b1c5d5c311c /src/components/Main/Main.tsx | |
| parent | e8a61bd7e49bf2a24fa1905a45e83380056a7368 (diff) | |
chore: define main grid to center content
Diffstat (limited to 'src/components/Main/Main.tsx')
| -rw-r--r-- | src/components/Main/Main.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/Main/Main.tsx b/src/components/Main/Main.tsx index 3705c83..cc47443 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 <main>{children}</main>; + return ( + <main className={styles.wrapper}> + <div className={styles.body}>{children}</div> + </main> + ); }; export default Main; |
