OSDN Git Service

Merge pull request #41 from Bytom/dev
[bytom/vapor.git] / tools / side_chain_tool / web / node_modules / bootstrap / scss / mixins / _text-emphasis.scss
1 // stylelint-disable declaration-no-important
2
3 // Typography
4
5 @mixin text-emphasis-variant($parent, $color) {
6   #{$parent} {
7     color: $color !important;
8   }
9   a#{$parent} {
10     @include hover-focus {
11       color: darken($color, 10%) !important;
12     }
13   }
14 }