Cherry pick Bootstrap fix after 5.3.0-alpha2

See f77117141d.
This commit is contained in:
Will Faught
2023-03-27 20:49:02 -07:00
parent 6ec83f4695
commit 10cd525712
2 changed files with 10 additions and 3 deletions

1
paige/README.md Normal file
View File

@@ -0,0 +1 @@
`node_modules/bootstrap` was manually modified to apply a [critical fix](https://github.com/twbs/bootstrap/commit/f77117141dfe34d8fe984eabddf660e29cb96a57) that came after 5.3.0-alpha2.

View File

@@ -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();
}
}
}
}