switching/sass/bootstrap/mixins/_alerts.scss

15 lines
263 B
SCSS
Raw Normal View History

2019-08-21 09:57:48 +00:00
// 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%);
}
}