<nv>
<h3>Navbar & Header go here</h3>
</nv>
<main class="main-layout">
<h2>Main content Area of pages</h2>
</main>
<footer>
<h3>Footer Area</h3>
</footer>
<nv><h3>Navbar & Header go here</h3></nv>
<main class="main-layout">
<h2>Main content Area of pages</h2>
</main>
<footer><h3>Footer Area</h3></footer>
/* No context defined. */
.main-layout {
display: flex;
flex-direction: column;
align-items: center;
> * + * {
margin-top: $spacer-base;
}
> :first-child {
margin-top: $spacer-lg;
}
@media screen and (min-width: $grid-breakpoint-md) {
> * + * {
margin-top: $spacer-lg;
}
> :first-child {
margin-top: $spacer-xl;
}
}
}
No notes defined.