Skip to content

Commit f542435

Browse files
author
Daniel Ruf
committed
chore: document $breakpoint variable in xy-grid-layout, set null as default for $breakpoint
1 parent 8febe20 commit f542435

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scss/xy-grid/_layout.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
/// @param {Number|Map} $gutters [$grid-margin-gutters] - Map or single value for gutters.
1515
/// @param {Keyword} $gutter-type [margin] - Type of gutter to output. Accepts `margin` or `padding`.
1616
/// @param {List} $gutter-position [right left] - The position to apply gutters to. Accepts `top`, `bottom`, `left`, `right` in any combination.
17+
/// @param {String} $breakpoint [null] - The breakpoint to use for the cell generation.
1718
/// @param {Boolean} $vertical [false] - Set to true to output vertical (height) styles rather than widths.
1819
@mixin xy-grid-layout(
1920
$n,
@@ -22,7 +23,7 @@
2223
$gutters: $grid-margin-gutters,
2324
$gutter-type: margin,
2425
$gutter-position: right left,
25-
$breakpoint: $-zf-zero-breakpoint,
26+
$breakpoint: null,
2627
$vertical: false
2728
) {
2829
$size: percentage(1/$n);

0 commit comments

Comments
 (0)