update to state of the art
This commit is contained in:
1
node_modules/bootstrap/scss/mixins/_forms.scss
generated
vendored
1
node_modules/bootstrap/scss/mixins/_forms.scss
generated
vendored
@@ -53,6 +53,7 @@
|
||||
.#{$state}-tooltip {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 5;
|
||||
display: none;
|
||||
max-width: 100%; // Contain to parent when possible
|
||||
|
1
node_modules/bootstrap/scss/mixins/_grid-framework.scss
generated
vendored
1
node_modules/bootstrap/scss/mixins/_grid-framework.scss
generated
vendored
@@ -34,7 +34,6 @@
|
||||
.col#{$infix} {
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
min-width: 0; // See https://github.com/twbs/bootstrap/issues/25410
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
14
node_modules/bootstrap/scss/mixins/_grid.scss
generated
vendored
14
node_modules/bootstrap/scss/mixins/_grid.scss
generated
vendored
@@ -10,6 +10,12 @@
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
@mixin make-row($gutter: $grid-gutter-width) {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-right: -$gutter / 2;
|
||||
margin-left: -$gutter / 2;
|
||||
}
|
||||
|
||||
// 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) {
|
||||
@@ -18,13 +24,7 @@
|
||||
max-width: $container-max-width;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin make-row($gutter: $grid-gutter-width) {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-right: -$gutter / 2;
|
||||
margin-left: -$gutter / 2;
|
||||
@include deprecate("The `make-container-max-widths` mixin", "v4.5.2", "v5");
|
||||
}
|
||||
|
||||
@mixin make-col-ready($gutter: $grid-gutter-width) {
|
||||
|
Reference in New Issue
Block a user