1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/scss/mixins/_alert.scss

14 lines
242 B
SCSS
Raw Normal View History

@mixin alert-variant($background, $border, $color) {
color: $color;
@include gradient-bg($background);
2014-12-02 17:02:35 -05:00
border-color: $border;
hr {
border-top-color: darken($border, 5%);
}
2014-12-02 17:02:35 -05:00
.alert-link {
color: darken($color, 10%);
2014-12-02 17:02:35 -05:00
}
}