}
}
-
// Columns
//
// Common styles for small and large grid columns
@if $enable-grid-classes {
- [class^="col"] {
- position: relative;
- min-height: 1px;
- padding-right: ($grid-gutter-width / 2);
- padding-left: ($grid-gutter-width / 2);
- //
- // // Allow `.col` to use an automatic, even width when flex mode is enabled
- // @if $enable-flex {
- // flex: 1;
- // }
- }
-
@include make-grid-columns();
}
@include media-breakpoint-up($breakpoint, $breakpoints) {
@if $enable-flex {
.col-#{$breakpoint} {
- @extend column-basics; // Relative position, min-height, and horizontal padding
+ position: relative;
max-width: 100%;
+ min-height: 1px;
flex-basis: 0;
flex-grow: 1;
+ padding-right: ($grid-gutter-width / 2);
+ padding-left: ($grid-gutter-width / 2);
}
}
margin-right: ($gutter / -2);
}
-// Used here for `make-col` and in the `grid-framework` for generating
-// predefined grid classes.
-%column-basics {
+@mixin make-col($size, $columns: $grid-columns) {
position: relative;
min-height: 1px;
padding-right: ($grid-gutter-width / 2);
padding-left: ($grid-gutter-width / 2);
-}
-
-@mixin make-col($size, $columns: $grid-columns) {
- @extend column-basics;
@if $enable-flex {
flex: 0 0 percentage($size / $columns);