15 lines
192 B
SCSS
15 lines
192 B
SCSS
@import './mixins';
|
|
|
|
.page-header {
|
|
margin-top: 0;
|
|
}
|
|
|
|
@include breakpoint(tablet) {
|
|
.page-header {
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background-color: lighten($todos-palette5, 70%);
|
|
}
|