Skip to content

Commit d9bc65e

Browse files
committed
Removed unnessesary styling from the Layout
1 parent 33f2e09 commit d9bc65e

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
191191
- home(index) page
192192
- Created a combineClasses function to clean up conditional class handling
193193
- Rename RowAlignLeft to Row
194+
- Remove unessesary stylings from the Layout.

components/layout/Layout/Layout.module.scss

Lines changed: 0 additions & 4 deletions
This file was deleted.

components/layout/Layout/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { heroOptions } from '@/utils/hero-options';
33
import Hero from '@/components/layout/Hero';
44
import Meta from '@/components/layout/Meta';
55
import Footer from '@/components/layout/Footer';
6-
import styles from './Layout.module.scss';
76

87
export default function Layout({ children }) {
98
const router = useRouter();
@@ -15,7 +14,7 @@ export default function Layout({ children }) {
1514
return (
1615
<>
1716
<Meta />
18-
<main className={styles.main}>
17+
<main>
1918
<Hero {...heroOptions[heroKey]} />
2019
{children}
2120
<Footer />

0 commit comments

Comments
 (0)