Skip to content

Commit

Permalink
docs(callouts): drop h4 color customization in variants
Browse files Browse the repository at this point in the history
  • Loading branch information
ffoodd committed Sep 2, 2020
1 parent 0e007e6 commit 7855642
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions site/assets/scss/_callouts.scss
Expand Up @@ -28,12 +28,14 @@
}

// Variations
@mixin bs-callout-variant($color) {
border-left-color: $color;
.bd-callout-info {
border-left-color: $bd-info;
}

h4 { color: $color; }
.bd-callout-warning {
border-left-color: $bd-warning;
}

.bd-callout-info { @include bs-callout-variant($bd-info); }
.bd-callout-warning { @include bs-callout-variant($bd-warning); }
.bd-callout-danger { @include bs-callout-variant($bd-danger); }
.bd-callout-danger {
border-left-color: $bd-danger;
}

0 comments on commit 7855642

Please sign in to comment.