You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
268 B

  1. // scss-docs-start alert-variant-mixin
  2. @mixin alert-variant($background, $border, $color) {
  3. color: $color;
  4. @include gradient-bg($background);
  5. border-color: $border;
  6. .alert-link {
  7. color: shade-color($color, 20%);
  8. }
  9. }
  10. // scss-docs-end alert-variant-mixin