From: Mattan Ingram Date: Fri, 12 Aug 2016 22:51:26 +0000 (-0400) Subject: The scss variables in _settings.scss are not !default X-Git-Tag: v2.3.0~7^2~60^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f757b3a75268c60a8aea0e639599502c7ff6df8;p=thirdparty%2Ffoundation%2Ffoundation-emails.git The scss variables in _settings.scss are not !default !defaults are set in _globals.scss --- diff --git a/docs/pages/sass.md b/docs/pages/sass.md index 1821ba74..3497b3c0 100644 --- a/docs/pages/sass.md +++ b/docs/pages/sass.md @@ -80,19 +80,19 @@ Here's an example set of settings variables. These change the default styling of ```scss // Text color of buttons. -$button-color: $white !default; +$button-color: $white; // Text color of buttons with a light background. -$button-color-alt: $medium-gray !default; +$button-color-alt: $medium-gray; // Font weight of buttons. -$button-font-weight: bold !default; +$button-font-weight: bold; // Background color of buttons. -$button-background: $primary-color !default; +$button-background: $primary-color; // Border around buttons. -$button-border: 2px solid $button-background !default; +$button-border: 2px solid $button-background; ``` We put together some [Best Practices on Sass file structure](http://zurb.com/university/lessons/avoid-a-cluttered-mess-sensible-sass-file-structure) that will help you keep your project clean.