From: cdang3 Date: Tue, 9 Apr 2019 16:55:44 +0000 (-0700) Subject: docs: remove unnecessary default flag in button config examples X-Git-Tag: v6.6.0~3^2~35^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11734%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git docs: remove unnecessary default flag in button config examples --- diff --git a/docs/pages/button.md b/docs/pages/button.md index 4bfa2cd4d..aaf0efa2a 100644 --- a/docs/pages/button.md +++ b/docs/pages/button.md @@ -114,7 +114,7 @@ If you don't need certain colors from the default palette, simply remove them fr $button-palette: map-remove($foundation-palette, ( primary, secondary -)) !default; +)); ``` Or you can add more colors to the default palette. @@ -122,7 +122,7 @@ Or you can add more colors to the default palette. ```scss $button-palette: map-merge($foundation-palette, ( purple: #bb00ff -)) !default; +)); ``` Or you can define your own custom button palette. @@ -132,7 +132,7 @@ $button-palette: ( black: #000000, red: #ff0000, purple: #bb00ff -) !default; +); ``` ---