File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 2
2
///
3
3
/// @param {Boolean} $vertical [false] - Is grid vertical or horizontal. Should match grid.
4
4
/// @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.
5
8
@mixin xy-grid-frame (
6
9
$vertical : false,
7
10
$nested : false,
8
11
$gutters : null,
9
12
$breakpoint : null,
10
- $include-base-styles : true
13
+ $include-base : true
11
14
) {
12
15
13
- @if $include-base-styles {
16
+ @if $include-base {
14
17
overflow : hidden ;
15
18
position : relative ;
16
19
flex-wrap : nowrap ;
You can’t perform that action at this time.
0 commit comments