]> git.ipfire.org Git - thirdparty/foundation/foundation-emails.git/commitdiff
The scss variables in _settings.scss are not !default 556/head
authorMattan Ingram <mattaningram@gmail.com>
Fri, 12 Aug 2016 22:51:26 +0000 (18:51 -0400)
committerGitHub <noreply@github.com>
Fri, 12 Aug 2016 22:51:26 +0000 (18:51 -0400)
!defaults are set in _globals.scss

docs/pages/sass.md

index 1821ba7463ee82dd8ba6db3f91e51db8c4ddae67..3497b3c0894f1435d44e2399da51d66613e460d5 100644 (file)
@@ -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.