From 7f757b3a75268c60a8aea0e639599502c7ff6df8 Mon Sep 17 00:00:00 2001 From: Mattan Ingram Date: Fri, 12 Aug 2016 18:51:26 -0400 Subject: [PATCH] The scss variables in _settings.scss are not !default !defaults are set in _globals.scss --- docs/pages/sass.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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. -- 2.47.2