]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Add remark to Sass docs explaining where to find the settings file, if you aren't...
authorGeoff Kimball <geoff@zurb.com>
Wed, 16 Dec 2015 23:11:40 +0000 (15:11 -0800)
committerGeoff Kimball <geoff@zurb.com>
Wed, 16 Dec 2015 23:11:40 +0000 (15:11 -0800)
docs/pages/sass.md

index 3377cadb0e79c5e260474151ee0ad49131926798..a076ded5379e234443c14442765ab46404301b3f 100644 (file)
@@ -38,6 +38,7 @@ To get started, first install the framework files using Bower or npm.
 
 ```bash
 npm install foundation-sites --save
+bower install foundation-sites --save
 ```
 
 ### Compiling Manually
@@ -70,6 +71,13 @@ Finally, add an `@import` statement to the top of your primary Sass file. Refer
 @import 'foundation';
 ```
 
+You're also going to want a settings file for your project, which will allow you to modify the default styles of Foundation. **[Download the latest settings file here](https://raw.githubusercontent.com/zurb/foundation-sites/master/scss/settings/_settings.scss)**, add it to your project as `_settings.scss`, then import it *before* Foundation itself.
+
+```scss
+@import 'settings';
+@import 'foundation';
+```
+
 ### Using Compiled CSS
 
 The Foundation for Sites npm and Bower packages include pre-compiled CSS files, in minified (compressed) and unminified flavors. If you're interested in editing the framework CSS directly, use the unminified file. For production, use the minified version.