Skip to content

Commit

Permalink
Merge pull request sass#58 from marleyblakedog/patch-1
Browse files Browse the repository at this point in the history
Escape underscores in file names on import example
  • Loading branch information
bpainter committed Mar 6, 2014
2 parents 083e4ea + 520407a commit d2cd476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/guide.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ title: Sass Basics

CSS has an import option that lets you split your CSS into smaller, more maintainable portions. The only drawback is that each time you use <code>@import</code> in CSS it creates another HTTP request. Sass builds on top of the current CSS <code>@import</code> but instead of requiring an HTTP request, Sass will take the file that you want to import and combine it with the file you're importing into so you can serve a single CSS file to the web browser.

Let's say you have a couple of Sass files, <code>_reset.scss</code> and <code>base.scss</code>. We want to import <code>_reset.scss</code> into <code>base.scss</code>.
Let's say you have a couple of Sass files, <code>\_reset.scss</code> and <code>base.scss</code>. We want to import <code>\_reset.scss</code> into <code>base.scss</code>.

~ partial "code-snippets/homepage-import-1-scss"
~ partial "code-snippets/homepage-import-2-scss"
Expand Down

0 comments on commit d2cd476

Please sign in to comment.