mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
9 lines
187 B
SCSS
9 lines
187 B
SCSS
@mixin alert-variant($background, $border, $color) {
|
|
color: $color;
|
|
@include gradient-bg($background);
|
|
border-color: $border;
|
|
|
|
.alert-link {
|
|
color: darken($color, 10%);
|
|
}
|
|
}
|