You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
559 B
19 lines
559 B
//
|
|
// Alerts:
|
|
// See: https://github.com/twbs/bootstrap/blob/v4-dev/scss/mixins/_alert.scss
|
|
// --------------------------------------------------
|
|
|
|
// Extra theme colours
|
|
// -------------------------------------------
|
|
$as-colours: $as-theme-colours;
|
|
@if $as-theme-colours-extended-options == true {
|
|
// Include social brands
|
|
$as-colours: $as-theme-colours-extended;
|
|
}
|
|
|
|
@each $color, $value in $as-colours {
|
|
.alert-#{$color} {
|
|
@include alert-variant(theme-color-level($color, -10), theme-color-level($color, -9), theme-color-level($color, 6));
|
|
}
|
|
}
|