change variables.scss to _variables.scss

I was following the setup guide and found this typo.
This commit is contained in:
Parth Oberoi 2015-02-22 01:50:22 +05:30 committed by Michael Rose
parent 58455bbe4a
commit a0c5c28430

View file

@ -333,7 +333,7 @@ To exclude posts/pages from search results add `search_omit: true` to their YAML
## Further Customization ## Further Customization
Jekyll 2.x added support for Sass files making it much easier to modify a theme's fonts and colors. By editing values found in `_sass/variables.scss` you can fine tune the site's colors and typography. Jekyll 2.x added support for Sass files making it much easier to modify a theme's fonts and colors. By editing values found in `_sass/_variables.scss` you can fine tune the site's colors and typography.
For example if you wanted a red background instead of white you'd change `$body-color: #ebebeb;` to `$body-color: $cc0033;`. For example if you wanted a red background instead of white you'd change `$body-color: #ebebeb;` to `$body-color: $cc0033;`.