2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-14 18:42:30 +03: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
-10
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;
}
}
}