0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/scss/mixins/_grid.scss

60 lines
1.6 KiB
SCSS
Raw Normal View History

2014-12-02 23:02:35 +01:00
/// Grid system
//
// Generate semantic grid columns with these mixins.
@mixin make-container($gutter: $grid-gutter-width) {
width: 100%;
2018-12-14 17:54:44 +01:00
padding-right: $gutter / 2;
padding-left: $gutter / 2;
2017-10-03 05:34:56 +02:00
margin-right: auto;
margin-left: auto;
2014-12-02 23:02:35 +01:00
}
@mixin make-row($gutter: $grid-gutter-width) {
2016-12-22 05:26:17 +01:00
display: flex;
flex-wrap: wrap;
2018-12-14 17:54:44 +01:00
margin-right: -$gutter / 2;
margin-left: -$gutter / 2;
2014-12-02 23:02:35 +01:00
}
@mixin make-col-ready($gutter: $grid-gutter-width) {
2014-12-02 23:02:35 +01: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 05:26:17 +01:00
width: 100%;
2018-12-14 17:54:44 +01: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 23:02:35 +01:00
}
2019-10-17 08:46:34 +02: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 16:37:39 +02:00
& > * {
flex: 0 0 100% / $count;
max-width: 100% / $count;
}
}