0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/scss/mixins/_alert.scss

12 lines
268 B
SCSS
Raw Normal View History

// scss-docs-start alert-variant-mixin
@mixin alert-variant($background, $border, $color) {
color: $color;
@include gradient-bg($background);
2014-12-02 23:02:35 +01:00
border-color: $border;
.alert-link {
2020-10-13 09:58:06 +02:00
color: shade-color($color, 20%);
2014-12-02 23:02:35 +01:00
}
}
// scss-docs-end alert-variant-mixin