bootstrap-scss 4.5.1 → 4.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/bootstrap-grid.scss +1 -1
- package/bootstrap-reboot.scss +1 -1
- package/bootstrap.scss +1 -1
- package/mixins/_grid.scss +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -40,8 +40,8 @@
|
|
40
40
|
|
41
41
|
Several quick start options are available:
|
42
42
|
|
43
|
-
- Install with [npm](https://www.npmjs.com/): `npm install bootstrap-scss@4.5.
|
44
|
-
- Install with [yarn](https://yarnpkg.com/): `yarn add bootstrap-scss@4.5.
|
43
|
+
- Install with [npm](https://www.npmjs.com/): `npm install bootstrap-scss@4.5.2`
|
44
|
+
- Install with [yarn](https://yarnpkg.com/): `yarn add bootstrap-scss@4.5.2`
|
45
45
|
|
46
46
|
Read the [Getting started page](https://getbootstrap.com/docs/4.5/getting-started/introduction/) for information on the framework contents, templates and examples, and more.
|
47
47
|
|
@@ -76,7 +76,7 @@ For simplicity, this project will use the same version numbers as Bootstrap.
|
|
76
76
|
|
77
77
|
## Changelog
|
78
78
|
|
79
|
-
https://blog.getbootstrap.com/2020/08/
|
79
|
+
https://blog.getbootstrap.com/2020/08/06/bootstrap-4-5-2/
|
80
80
|
|
81
81
|
## Copyright and license
|
82
82
|
|
package/bootstrap-grid.scss
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Grid v4.5.
|
2
|
+
* Bootstrap Grid v4.5.2 (https://getbootstrap.com/)
|
3
3
|
* Copyright 2011-2020 The Bootstrap Authors
|
4
4
|
* Copyright 2011-2020 Twitter, Inc.
|
5
5
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
package/bootstrap-reboot.scss
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Reboot v4.5.
|
2
|
+
* Bootstrap Reboot v4.5.2 (https://getbootstrap.com/)
|
3
3
|
* Copyright 2011-2020 The Bootstrap Authors
|
4
4
|
* Copyright 2011-2020 Twitter, Inc.
|
5
5
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
package/bootstrap.scss
CHANGED
package/mixins/_grid.scss
CHANGED
@@ -12,12 +12,21 @@
|
|
12
12
|
|
13
13
|
@mixin make-row($gutter: $grid-gutter-width) {
|
14
14
|
display: flex;
|
15
|
-
flex: 1 0 100%;
|
16
15
|
flex-wrap: wrap;
|
17
16
|
margin-right: -$gutter / 2;
|
18
17
|
margin-left: -$gutter / 2;
|
19
18
|
}
|
20
19
|
|
20
|
+
// For each breakpoint, define the maximum width of the container in a media query
|
21
|
+
@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
|
22
|
+
@each $breakpoint, $container-max-width in $max-widths {
|
23
|
+
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
24
|
+
max-width: $container-max-width;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
@include deprecate("The `make-container-max-widths` mixin", "v4.5.2", "v5");
|
28
|
+
}
|
29
|
+
|
21
30
|
@mixin make-col-ready($gutter: $grid-gutter-width) {
|
22
31
|
position: relative;
|
23
32
|
// Prevent columns from becoming too narrow when at smaller grid tiers by
|