Skip to content

Commit

Permalink
chore: document $breakpoint variable in xy-grid-layout, set null as d…
Browse files Browse the repository at this point in the history
…efault for $breakpoint
  • Loading branch information
Daniel Ruf committed Apr 10, 2018
1 parent 8febe20 commit f542435
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scss/xy-grid/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
/// @param {Number|Map} $gutters [$grid-margin-gutters] - Map or single value for gutters.
/// @param {Keyword} $gutter-type [margin] - Type of gutter to output. Accepts `margin` or `padding`.
/// @param {List} $gutter-position [right left] - The position to apply gutters to. Accepts `top`, `bottom`, `left`, `right` in any combination.
/// @param {String} $breakpoint [null] - The breakpoint to use for the cell generation.
/// @param {Boolean} $vertical [false] - Set to true to output vertical (height) styles rather than widths.
@mixin xy-grid-layout(
$n,
Expand All @@ -22,7 +23,7 @@
$gutters: $grid-margin-gutters,
$gutter-type: margin,
$gutter-position: right left,
$breakpoint: $-zf-zero-breakpoint,
$breakpoint: null,
$vertical: false
) {
$size: percentage(1/$n);
Expand Down

0 comments on commit f542435

Please sign in to comment.