63 lines
1.4 KiB
SCSS
63 lines
1.4 KiB
SCSS
//
|
|
|
|
@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
|
|
%grid-column {
|
|
position: relative;
|
|
width: 100%;
|
|
padding-right: $gutter / 2;
|
|
padding-left: $gutter / 2;
|
|
}
|
|
|
|
@each $breakpoint in map-keys($breakpoints) {
|
|
$infix: breakpoint-infix($breakpoint, $breakpoints);
|
|
|
|
@for $i from 1 through $columns {
|
|
.col#{$infix}-#{$i} {
|
|
@extend %grid-column;
|
|
}
|
|
}
|
|
.col#{$infix},
|
|
.col#{$infix}-auto {
|
|
@extend %grid-column;
|
|
}
|
|
|
|
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
|
.col#{$infix} {
|
|
flex-basis: 0;
|
|
flex-grow: 1;
|
|
max-width: 100%;
|
|
}
|
|
|
|
@for $i from 1 through $grid-row-columns {
|
|
.row-cols#{$infix}-#{$i} {
|
|
@include row-cols($i);
|
|
}
|
|
}
|
|
|
|
.col#{$infix}-auto {
|
|
@include make-col-auto();
|
|
}
|
|
|
|
@for $i from 1 through $columns {
|
|
.col#{$infix}-#{$i} {
|
|
@include make-col($i, $columns);
|
|
}
|
|
}
|
|
|
|
.order#{$infix}-first { order: -1; }
|
|
|
|
.order#{$infix}-last { order: $columns + 1; }
|
|
|
|
@for $i from 0 through $columns {
|
|
.order#{$infix}-#{$i} { order: $i; }
|
|
}
|
|
|
|
@for $i from 0 through ($columns - 1) {
|
|
@if not ($infix == "" and $i == 0) { .offset#{$infix}-#{$i} {
|
|
@include make-col-offset($i, $columns);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|