]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
add "!default" to _button-group.scss
authorSébastien GRAVIER <illusionperdu@gmail.com>
Tue, 24 Nov 2015 15:20:53 +0000 (16:20 +0100)
committerSébastien GRAVIER <illusionperdu@gmail.com>
Tue, 24 Nov 2015 15:20:53 +0000 (16:20 +0100)
scss/components/_button-group.scss

index 7074dc1364a491e9693cfecbfb0653f40638b2fb..994b992bd6a5a5367404a3238e39616d6ffb79d3 100644 (file)
@@ -8,19 +8,19 @@
 
 /// Margin for button groups.
 /// @type Number
-$buttongroup-margin: 1rem;
+$buttongroup-margin: 1rem !default;
 
 /// Margin between buttons in a button group.
 /// @type Border
-$buttongroup-spacing: 1px;
+$buttongroup-spacing: 1px !default;
 
 /// Selector for the buttons inside a button group.
 /// @type String
-$buttongroup-child-selector: '.button';
+$buttongroup-child-selector: '.button' !default;
 
 /// Maximum number of buttons that can be in an even-width button group.
 /// @type Number
-$buttongroup-expand-max: 6;
+$buttongroup-expand-max: 6 !default;
 
 /// Add styles for a button group container.
 /// @param {String} $child-selector [$buttongroup-child-selector] - Selector for the buttons inside a button group.