summaryrefslogtreecommitdiff
path: root/templates/assets/bootstrap/scss/mixins/_text-emphasis.scss
blob: 9cd4b6a4f008acb58dcfd415893df420edf6efd2 (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%) !important;
    }
  }
}