File "_text-emphasis.scss"

Full Path: /home/asmplong/www/scss/mixins/_text-emphasis.scss
File size: 259 bytes
MIME-type: text/plain
Charset: utf-8

// stylelint-disable declaration-no-important

// Typography

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