24 lines
347 B
SCSS
24 lines
347 B
SCSS
body {
|
|
}
|
|
|
|
section {
|
|
@include outer-container;
|
|
margin-top: 6rem;
|
|
|
|
@include media($mobile) {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
header {
|
|
@include span-columns(10);
|
|
@include shift(1);
|
|
text-align: center;
|
|
// background-color: purple;
|
|
|
|
@include media($mobile) {
|
|
@include span-columns(10);
|
|
@include shift(1);
|
|
}
|
|
}
|
|
}
|