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

_background-variant.scss « mixins « scss - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55dcccd5d9cf2c17c0d4409b20adac07ec819397 (plain)
1
2
3
4
5
6
7
// stylelint-disable declaration-no-important

@mixin bg-gradient-variant($parent, $color) {
  #{$parent} {
    background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x !important;
  }
}