]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
docs: remove unnecessary default flag in button config examples 11734/head
authorcdang3 <cdang@goldencomm.com>
Tue, 9 Apr 2019 16:55:44 +0000 (09:55 -0700)
committerChristin Dang <cdang@goldencomm.com>
Tue, 9 Apr 2019 20:38:55 +0000 (13:38 -0700)
docs/pages/button.md

index 4bfa2cd4db507c69f3b947092f0ccc04f4eee21d..aaf0efa2a1006ab4b505c4c325dcaa9d4cccdd00 100644 (file)
@@ -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;
+);
 ```
 
 ---