@include make-grid-columns();
+// Flex column reordering
+@if $enable-flex {
+ .col-xs-first { order: -1; }
+ .col-xs-last { order: 1; }
+
+ @include media-breakpoint-up(sm) {
+ .col-sm-first { order: -1; }
+ .col-sm-last { order: 1; }
+ }
+
+ @include media-breakpoint-up(md) {
+ .col-md-first { order: -1; }
+ .col-md-last { order: 1; }
+ }
+
+ @include media-breakpoint-up(lg) {
+ .col-lg-first { order: -1; }
+ .col-lg-last { order: 1; }
+ }
+
+ @include media-breakpoint-up(xl) {
+ .col-xl-first { order: -1; }
+ .col-xl-last { order: 1; }
+ }
+}
//
// Quickly modify global styling by enabling or disabling features.
+$enable-flex: true !default;
$enable-rounded: true !default;
$enable-shadows: false !default;
$enable-gradients: false !default;
@include media-breakpoint-up($breakpoint) {
// Work around cross-media @extend (https://github.com/sass/sass/issues/1050)
%grid-column-float-#{$breakpoint} {
- float: left;
+ @if $enable-flex {
+ // Do nothing
+ } @else {
+ float: left;
+ }
}
@for $i from 1 through $columns {
.col-#{$breakpoint}-#{$i} {
}
@mixin make-row($gutter: $grid-gutter-width) {
+ @if $enable-flex {
+ display: flex;
+ flex-wrap: wrap;
+ }
margin-left: ($gutter / -2);
margin-right: ($gutter / -2);
@include clearfix();
@mixin make-col($gutter: $grid-gutter-width) {
position: relative;
- float: left;
+ @if $enable-flex {
+ // Do nothing
+ } @else {
+ float: left;
+ }
min-height: 1px;
padding-left: ($gutter / 2);
padding-right: ($gutter / 2);
}
@mixin make-col-span($size, $columns: $grid-columns) {
- width: percentage($size / $columns);
+ @if $enable-flex {
+ flex: 0 0 percentage($size / $columns);
+ } @else {
+ width: percentage($size / $columns);
+ }
}
@mixin make-col-offset($size, $columns: $grid-columns) {