sass 40import and partials

Solutions on MaxInterview for sass 40import and partials by the best coders in the world

showing results for - "sass 40import and partials"
Linus
21 Jul 2016
1@import "variables";
2@import "colors";
3@import "reset";
4
5reset.scss
6
7@import "reset";
8
9body {
10  font-family: Helvetica, sans-serif;
11  font-size: 18px;
12  color: red;
13}