1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-22 05:03:16 +02:00

🔥 Remove container duplication

This commit is contained in:
k-utsumi
2020-06-12 11:59:23 +09:00
committed by Mark Otto
parent 286f16b92c
commit cde53a85d1
2 changed files with 1 additions and 15 deletions

View File

@@ -7,13 +7,3 @@
margin-right: auto;
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;
}
}
}