twbs--bootstrap/scss/mixins/_grid.scss

70 lines
1.9 KiB
SCSS
Raw Normal View History

2014-12-02 22:02:35 +00:00
/// Grid system
//
// Generate semantic grid columns with these mixins.
@mixin make-container($padding-x: $container-padding-x) {
width: 100%;
padding-right: $padding-x;
padding-left: $padding-x;
2017-10-03 03:34:56 +00:00
margin-right: auto;
margin-left: auto;
2014-12-02 22:02:35 +00:00
}
// For each breakpoint, define the maximum width of the container in a media query
@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
@each $breakpoint, $container-max-width in $max-widths {
@include media-breakpoint-up($breakpoint, $breakpoints) {
max-width: $container-max-width;
}
}
}
@mixin make-row($gutter: $grid-gutter-width) {
2016-12-22 04:26:17 +00:00
display: flex;
flex-wrap: wrap;
2018-12-14 16:54:44 +00:00
margin-right: -$gutter / 2;
margin-left: -$gutter / 2;
2014-12-02 22:02:35 +00:00
}
@mixin make-col-ready($gutter: $grid-gutter-width) {
2014-12-02 22:02:35 +00:00
position: relative;
// Prevent columns from becoming too narrow when at smaller grid tiers by
// always setting `width: 100%;`. This works because we use `flex` values
// later on to override this initial width.
2016-12-22 04:26:17 +00:00
width: 100%;
2018-12-14 16:54:44 +00:00
padding-right: $gutter / 2;
padding-left: $gutter / 2;
}
@mixin make-col($size, $columns: $grid-columns) {
flex: 0 0 percentage($size / $columns);
// Add a `max-width` to ensure content within each column does not blow out
// the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
// do not appear to require this.
max-width: percentage($size / $columns);
2014-12-02 22:02:35 +00:00
}
2019-10-17 06:46:34 +00:00
@mixin make-col-auto() {
flex: 0 0 auto;
width: auto;
max-width: 100%; // Reset earlier grid tiers
}
@mixin make-col-offset($size, $columns: $grid-columns) {
$num: $size / $columns;
margin-left: if($num == 0, 0, percentage($num));
}
// Row columns
//
// Specify on a parent element(e.g., .row) to force immediate children into NN
// numberof columns. Supports wrapping to new lines, but does not do a Masonry
// style grid.
@mixin row-cols($count) {
2019-08-28 14:37:39 +00:00
& > * {
flex: 0 0 100% / $count;
max-width: 100% / $count;
}
}