1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-31 17:11:48 +02:00

Avoid duplication of container breakpoints (#30969)

This commit is contained in:
k-utsumi
2020-06-14 06:25:39 +09:00
committed by GitHub
parent 7c6a0db820
commit c3572ceca9
2 changed files with 1 additions and 15 deletions

View File

@@ -10,16 +10,6 @@
margin-left: auto;
}
// 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) {
display: flex;
flex-wrap: wrap;