]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Variable naming and description iteration
authorKevin Ball <kmball11@gmail.com>
Fri, 21 Jul 2017 20:10:31 +0000 (13:10 -0700)
committerKevin Ball <kmball11@gmail.com>
Fri, 21 Jul 2017 20:11:02 +0000 (13:11 -0700)
scss/xy-grid/_frame.scss

index 56dead26338777134af717eeb13d500ad99f9a76..76c61e5ca24392477a8228631abd2023d390713d 100644 (file)
@@ -2,15 +2,18 @@
 ///
 /// @param {Boolean} $vertical [false] - Is grid vertical or horizontal. Should match grid.
 /// @param {Boolean} $nested [false] - Is grid nested or not. If nested is true this sets the frame to 100% height, otherwise will be 100vh.
+/// @param {Number|Map} $gutters [null] - Map or single value for gutters.
+/// @param {String} $breakpoint [null] - The name of the breakpoint size in your gutters map to get the size from.
+/// @param {Boolean} $include-base [true] - Include the base styles that don't vary per breakpoint.
 @mixin xy-grid-frame(
   $vertical: false,
   $nested: false,
   $gutters: null,
   $breakpoint: null,
-  $include-base-styles: true
+  $include-base: true
 ) {
 
-  @if $include-base-styles {
+  @if $include-base {
     overflow: hidden;
     position: relative;
     flex-wrap: nowrap;