summaryrefslogtreecommitdiffstats
path: root/src/components/Main
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-06 19:27:45 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-06 19:30:06 +0100
commit722ec20bad64d8c69b173c163011d37ad0b55591 (patch)
tree0470e54f758d9383fff3fdb4c9b685faa3bde6ae /src/components/Main
parent1494985a636fe22417615648062f17bc82c35655 (diff)
chore: move Main grid to its children
This way I can use full width background for some blocks.
Diffstat (limited to 'src/components/Main')
-rw-r--r--src/components/Main/Main.module.scss15
-rw-r--r--src/components/Main/Main.tsx7
2 files changed, 1 insertions, 21 deletions
diff --git a/src/components/Main/Main.module.scss b/src/components/Main/Main.module.scss
deleted file mode 100644
index a513f73..0000000
--- a/src/components/Main/Main.module.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-.wrapper {
- display: grid;
- grid-template-columns:
- minmax(0, 1fr) min(calc(50vw - var(--spacing-md)), 40ch) min(
- calc(50vw - var(--spacing-md)),
- 40ch
- )
- minmax(0, 1fr);
- align-items: center;
- padding: var(--spacing-md) 0;
-}
-
-.body {
- grid-column: 2 / 4;
-}
diff --git a/src/components/Main/Main.tsx b/src/components/Main/Main.tsx
index 8b2e822..ad270f6 100644
--- a/src/components/Main/Main.tsx
+++ b/src/components/Main/Main.tsx
@@ -1,12 +1,7 @@
import { FunctionComponent } from 'react';
-import styles from './Main.module.scss';
const Main: FunctionComponent = ({ children }) => {
- return (
- <main id="main" className={styles.wrapper}>
- <div className={styles.body}>{children}</div>
- </main>
- );
+ return <main id="main">{children}</main>;
};
export default Main;