Update Bootstrap to 5.3.0-alpha3

This commit is contained in:
Will Faught
2023-04-23 21:37:59 -07:00
parent 94a73b72ca
commit de7bd8d243
158 changed files with 1154 additions and 1024 deletions

View File

@@ -37,31 +37,3 @@ If you update Bootstrap:
@import "containers";
@import "grid";
```
3. Apply this patch if needed:
```diff
diff --git a/paige/node_modules/bootstrap/scss/_carousel.scss b/paige/node_modules/bootstrap/scss/_carousel.scss
index b17d27f493b..0ac8f8714fb 100644
--- a/paige/node_modules/bootstrap/scss/_carousel.scss
+++ b/paige/node_modules/bootstrap/scss/_carousel.scss
@@ -230,9 +230,15 @@
@if $enable-dark-mode {
@include color-mode(dark) {
- .carousel,
- &.carousel {
- @include carousel-dark();
+ @if $color-mode-type == "media-query" {
+ .carousel {
+ @include carousel-dark();
+ }
+ } @else {
+ .carousel,
+ &.carousel {
+ @include carousel-dark();
+ }
}
}
}
```