2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00

Drop h4 color customization in callouts (#31576)

This commit is contained in:
Gaël Poupard
2020-09-03 10:45:04 +02:00
committed by GitHub
parent 0e007e697e
commit 7134f6aa38
+9 -7
View File
@@ -28,12 +28,14 @@
} }
// Variations // Variations
@mixin bs-callout-variant($color) { .bd-callout-info {
border-left-color: $color; border-left-color: $bd-info;
h4 { color: $color; }
} }
.bd-callout-info { @include bs-callout-variant($bd-info); } .bd-callout-warning {
.bd-callout-warning { @include bs-callout-variant($bd-warning); } border-left-color: $bd-warning;
.bd-callout-danger { @include bs-callout-variant($bd-danger); } }
.bd-callout-danger {
border-left-color: $bd-danger;
}