25 lines
375 B
SCSS
25 lines
375 B
SCSS
.no-sidebar {
|
|
|
|
.site {
|
|
display: grid;
|
|
grid-template-columns: auto;
|
|
grid-template-areas:
|
|
"header"
|
|
"main"
|
|
"footer";
|
|
padding: 3rem;
|
|
}
|
|
.site-header {
|
|
.main {
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.secondary {
|
|
display:flex;
|
|
justify-content: center;
|
|
border-top: 1px solid $color__light-grey;
|
|
}
|
|
}
|
|
}
|