summaryrefslogtreecommitdiff
path: root/src/sass/bootstrap4/mixins/_text-emphasis.scss
blob: 27a4f454e200d1f816954ffdc50981bf10f4d600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Typography

@mixin text-emphasis-variant($parent, $color) {
  #{$parent} {
    color: $color !important;
  }
  a#{$parent} {
    @include hover-focus {
      color: darken($color, 10%);
    }
  }
}