Skip to content

Commit

Permalink
Merge pull request #95 from wfdd/master
Browse files Browse the repository at this point in the history
shorthand selector for shorthand syntax; same order of selectors
  • Loading branch information
₍˄ุ.͡˳̫.˄ุ₎ committed Aug 25, 2014
2 parents be7a637 + 12f3afb commit 2a8bd92
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion source/code-snippets/_homepage-import-2-sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
@import reset
body
font-size: 100% Helvetica, sans-serif
font: 100% Helvetica, sans-serif
background-color: #efefef
```
4 changes: 2 additions & 2 deletions source/code-snippets/_homepage-import-2-scss.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@import 'reset';

body {
font-size: 100% Helvetica, sans-serif;
font: 100% Helvetica, sans-serif;
background-color: #efefef;
}
```
```
4 changes: 2 additions & 2 deletions source/code-snippets/_homepage-import-css.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ html, body, ul, ol {
}

body {
font: 100% Helvetica, sans-serif;
background-color: #efefef;
font-size: 100% Helvetica, sans-serif;
}
```
```

0 comments on commit 2a8bd92

Please sign in to comment.