@@ -380,22 +380,25 @@ $flexbox-grid-mixins-stack: unset;
380
380
.grid--items-row-alignment {
381
381
@include grid ($gutter : $default-grid-gutter );
382
382
> .grid__col {
383
- @include grid-col ($col : 2 , $gutter : $default-grid-gutter , $align-self : none );
383
+ @include grid-col ($col : equal, $gutter : $default-grid-gutter , $align-self : null);
384
+ }
385
+ > .grid__col-auto {
386
+ @include grid-col ($col : equal, $gutter : $default-grid-gutter , $align-self : auto );
384
387
}
385
388
> .grid__col-top {
386
- @include grid-col ($col : 2 , $gutter : $default-grid-gutter , $align-self : flex-start );
389
+ @include grid-col ($col : equal , $gutter : $default-grid-gutter , $align-self : flex-start );
387
390
}
388
391
> .grid__col-middle {
389
- @include grid-col ($col : 2 , $gutter : $default-grid-gutter , $align-self : center );
392
+ @include grid-col ($col : equal , $gutter : $default-grid-gutter , $align-self : center );
390
393
}
391
394
> .grid__col-bottom {
392
- @include grid-col ($col : 2 , $gutter : $default-grid-gutter , $align-self : flex-end );
395
+ @include grid-col ($col : equal , $gutter : $default-grid-gutter , $align-self : flex-end );
393
396
}
394
397
> .grid__col-stretch {
395
- @include grid-col ($col : 2 , $gutter : $default-grid-gutter , $align-self : stretch );
398
+ @include grid-col ($col : equal , $gutter : $default-grid-gutter , $align-self : stretch );
396
399
}
397
400
> .grid__col-baseline {
398
- @include grid-col ($col : 2 , $gutter : $default-grid-gutter , $align-self : baseline );
401
+ @include grid-col ($col : equal , $gutter : $default-grid-gutter , $align-self : baseline );
399
402
}
400
403
}
401
404
@@ -443,7 +446,10 @@ $flexbox-grid-mixins-stack: unset;
443
446
.grid--items-column-alignment {
444
447
@include grid ($flex-direction : column , $gutter : $default-grid-gutter );
445
448
> .grid__col {
446
- @include grid-col ($col : 2 , $gutter : $default-grid-gutter , $align-self : none , $width : true);
449
+ @include grid-col ($col : 2 , $gutter : $default-grid-gutter , $align-self : null, $width : true);
450
+ }
451
+ > .grid__col-auto {
452
+ @include grid-col ($col : 2 , $gutter : $default-grid-gutter , $align-self : auto , $width : true);
447
453
}
448
454
> .grid__col-top {
449
455
@include grid-col ($col : 2 , $gutter : $default-grid-gutter , $align-self : flex-start , $width : true);
0 commit comments