1
0
mirror of https://github.com/danbee/julep synced 2025-03-04 08:59:10 +00:00

Move defaults to own include file.

This commit is contained in:
Dan Barber 2013-02-12 12:55:49 +00:00
parent e6d78746a1
commit b0c1182f58
2 changed files with 12 additions and 11 deletions

View File

@ -1,14 +1,4 @@
// Set some sensible defaults.
* {
margin: 0;
padding: 0;
@include box-sizing(border-box);
}
body {
margin: 0;
font-family: "Helvetica Neue", "Arial", sans-serif;
}
@import "includes/defaults";
@import "includes/content";
@import "includes/loader";

11
includes/_defaults.scss Normal file
View File

@ -0,0 +1,11 @@
// Set some sensible defaults.
* {
margin: 0;
padding: 0;
@include box-sizing(border-box);
}
body {
margin: 0;
font-family: "Helvetica Neue", "Arial", sans-serif;
}