Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_alert.scss « mixins « bootstrap « sass « assets - github.com/spech66/bootstrap-bp-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3eb59511da6cac0f35147f853c81fd8af0a87fb (plain)
1
2
3
4
5
6
7
8
9
10
11
// scss-docs-start alert-variant-mixin
@mixin alert-variant($background, $border, $color) {
  color: $color;
  @include gradient-bg($background);
  border-color: $border;

  .alert-link {
    color: shade-color($color, 20%);
  }
}
// scss-docs-end alert-variant-mixin