1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 20:14:15 +00:00
webvirtcloud/dev/scss/bootstrap/mixins/_alert.scss

12 lines
268 B
SCSS
Raw Normal View History

// scss-docs-start alert-variant-mixin
2020-05-19 16:53:54 +00:00
@mixin alert-variant($background, $border, $color) {
color: $color;
@include gradient-bg($background);
border-color: $border;
.alert-link {
color: shade-color($color, 20%);
2020-05-19 16:53:54 +00:00
}
}
// scss-docs-end alert-variant-mixin