File tree Expand file tree Collapse file tree 2 files changed +1
-15
lines changed Expand file tree Collapse file tree 2 files changed +1
-15
lines changed Original file line number Diff line number Diff line change 4
4
5
5
@if $enable-grid-classes {
6
6
// Single container class with breakpoint max-widths
7
- .container {
8
- @include make-container ();
9
- @include make-container-max-widths ();
10
- }
11
-
7
+ .container ,
12
8
// 100% wide container at all breakpoints
13
9
.container-fluid {
14
10
@include make-container ();
Original file line number Diff line number Diff line change 7
7
margin-right : auto ;
8
8
margin-left : auto ;
9
9
}
10
-
11
-
12
- // For each breakpoint, define the maximum width of the container in a media query
13
- @mixin make-container-max-widths ($max-widths : $container-max-widths , $breakpoints : $grid-breakpoints ) {
14
- @each $breakpoint , $container-max-width in $max-widths {
15
- @include media-breakpoint-up ($breakpoint , $breakpoints ) {
16
- max-width : $container-max-width ;
17
- }
18
- }
19
- }
You can’t perform that action at this time.
0 commit comments