17 lines
298 B
SCSS
17 lines
298 B
SCSS
// Layout
|
|
//
|
|
// Styles for managing the structural hierarchy of the site.
|
|
|
|
.container {
|
|
max-width: 50rem;
|
|
padding-left: var(--spacer-2);
|
|
padding-right: var(--spacer-2);
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
footer {
|
|
margin-top: var(--spacer-3);
|
|
margin-bottom: var(--spacer-3);
|
|
}
|