This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
|
// Alerts
|
|
|
|
@mixin alert-variant($background, $border, $text-color) {
|
|
background-color: $background;
|
|
border-color: $border;
|
|
color: $text-color;
|
|
|
|
hr {
|
|
border-top-color: darken($border, 5%);
|
|
}
|
|
.alert-link {
|
|
color: darken($text-color, 10%);
|
|
}
|
|
}
|