Skip to content

Commit 529334c

Browse files
committed
Variable naming and description iteration
1 parent 55fd2ec commit 529334c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

scss/xy-grid/_frame.scss

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
///
33
/// @param {Boolean} $vertical [false] - Is grid vertical or horizontal. Should match grid.
44
/// @param {Boolean} $nested [false] - Is grid nested or not. If nested is true this sets the frame to 100% height, otherwise will be 100vh.
5+
/// @param {Number|Map} $gutters [null] - Map or single value for gutters.
6+
/// @param {String} $breakpoint [null] - The name of the breakpoint size in your gutters map to get the size from.
7+
/// @param {Boolean} $include-base [true] - Include the base styles that don't vary per breakpoint.
58
@mixin xy-grid-frame(
69
$vertical: false,
710
$nested: false,
811
$gutters: null,
912
$breakpoint: null,
10-
$include-base-styles: true
13+
$include-base: true
1114
) {
1215

13-
@if $include-base-styles {
16+
@if $include-base {
1417
overflow: hidden;
1518
position: relative;
1619
flex-wrap: nowrap;

0 commit comments

Comments
 (0)